Merge pull request #26 from thedropbears/davo/pdm #116
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pdm-project/setup-pdm@v3 | |
with: | |
cache: true | |
- name: Install dependencies | |
run: | | |
pdm install | |
pdm run python -m ensurepip | |
pdm run python -m pip install coverage pytest-github-actions-annotate-failures | |
- run: pdm run robotpy coverage test -- -v | |
- uses: codecov/codecov-action@v3 | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pdm-project/setup-pdm@v3 | |
with: | |
cache: true | |
- name: Install dependencies | |
run: | | |
pdm install | |
pdm run python -m ensurepip | |
pdm run python -m pip install mypy | |
- name: mypy | |
uses: liskin/gh-problem-matcher-wrap@v2 | |
with: | |
linters: mypy | |
run: pdm run mypy --show-column-numbers . |