Lock the other mechanisms when climbing #807
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: 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 | |
- run: pdm run coverage xml | |
- 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 --group typing | |
- name: mypy | |
uses: liskin/gh-problem-matcher-wrap@v2 | |
with: | |
linters: mypy | |
run: pdm run mypy --show-column-numbers . |