chore(main): release 1.0.15 (#17) #59
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build . --tag snakemake/snakemake-image-kubeflow | |
- name: Run tests | |
# The source and the chmod are needed because github actions seems to do some | |
# suprising things to the container when running it, which don't happen when | |
# running it locally. This is a workaround to make the tests pass. | |
run: | | |
for cmd in "snakemake --version" "which setup-wizard" | |
do | |
docker run --user 1000 --rm snakemake/snakemake-image-kubeflow bash -c "source /home/jovyan/.bashrc; $cmd" | |
done |