Fix action version, bump to 4.7.2 manually #100
Workflow file for this run
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: Tests and coverage | |
on: [pull_request] | |
jobs: | |
Pytest_Coveralls: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | |
- name: Install Sambamba | |
run: | | |
brew update | |
brew install sambamba | |
- name: Install repo and its dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
pip install -e . | |
pip install coveralls | |
- name: Run pytest and coveralls | |
run: | | |
pytest --cov=chanjo tests/ | |
coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |