synch #461
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: [ develop, feature/* ] | |
jobs: | |
build: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build Docker image | |
run: docker build . --file Dockerfile --tag classical_dft_v2:$(date +%s) --tag classical_dft_v2:latest | |
- name: Run tests | |
run: docker run classical_dft_v2:latest |