Update actions/checkout action to v4 #45
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: whack-a-pi | |
on: | |
# All PR | |
pull_request: | |
# master branch merge | |
push: | |
branches: | |
- master | |
jobs: | |
linting: | |
# Run pre-commit (https://pre-commit.com/) | |
# which runs pre-configured linter & autoformatter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- run: bash .github/workflows/install_ci_python_dep.sh | |
- run: pre-commit run -a | |
test: | |
# Test suite run against recent python versions | |
# and against a few combination of MongoDB and pymongo | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8, 3.9, "3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install ci dependencies | |
run: | | |
bash .github/workflows/install_ci_python_dep.sh | |
- name: Run test suite | |
run: pytest |