update python #119
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: Build docker image and run tests in it | |
on: | |
push | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ 'ubuntu-latest' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build image | |
run: docker build -t spectrallibmatcher . | |
- name: Run tests | |
run: docker run -v $PWD:/app --rm spectrallibmatcher bash --login ./scripts/run_tests.sh |