Remove $$() construct from condor submission scripts #24
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: "Test Runner" | |
on: | |
push: | |
paths: | |
- "woldrnaseq/*" | |
- "workflows/*" | |
- "pyproject.toml" | |
- "setup.cfg" | |
- ".github/workflows/ci-test.yml" | |
jobs: | |
run-tests: | |
runs-on: "ubuntu-latest" | |
steps: | |
- run: echo "This job is now running on ${{ runner.os }}" | |
- run: echo "The repository is ${{ github.repository }} on branch ${{ github.ref }}" | |
- run : sudo apt -y install python3-all samtools | |
- name: "Check out repository" | |
uses: actions/checkout@v2 | |
- run: echo "Checkout successful" | |
- name: Run tests | |
run: | | |
python --version | |
pip install tox | |
tox | |
- run: echo "The job status was ${{ job.status }}" |