Documentation PR #15
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: testing | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [main] | |
jobs: | |
pytest: | |
# Using matrix strategy | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
runs-on: ubuntu-latest | |
steps: | |
#-------------------------------------# | |
# Check out repo and set up Python # | |
#-------------------------------------# | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: "Setup Python, Poetry and Dependencies" | |
uses: packetcoders/action-setup-cache-python-poetry@main | |
with: | |
python-version: ${{matrix.python-version}} | |
poetry-version: 1.2.2 | |
#------------------------# | |
# Run pytest | |
#------------------------# | |
- name: Run tests on python ${{matrix.python-version}} | |
run: | | |
poetry run pytest --cov=sed -n auto tests/ | |
- name: Coveralls Parallel | |
uses: coverallsapp/github-action@v2 | |
with: | |
flag-name: run-${{ join(matrix.*, '-') }} | |
parallel: true | |
finish: | |
needs: pytest | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
steps: | |
# Coveralls missing | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true | |
carryforward: "run-3.8,run-3.9,run-3.10" |