Update README with author information and paper details; remove obsol… #2
This file contains 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: Unit tests | |
on: | |
push: | |
branches: [ 'main' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
container: | |
image: jobirk/pytorch-image:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test with pytest | |
run: bash -c "source /opt/conda/bin/activate && export PYTHONPATH=$PWD:$PYTHONPATH && pytest" |