Bump dependencies #56
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
# SPDX-FileCopyrightText: 2022 Carnegie Mellon University | |
# SPDX-License-Identifier: 0BSD | |
name: python | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
env: | |
PYTHONUNBUFFERED: 1 | |
jobs: | |
pre-commit: | |
name: Rerun pre-commit checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- name: Run pre-commit checks | |
uses: pre-commit/[email protected] | |
tests: | |
name: Tests | |
needs: pre-commit | |
strategy: | |
matrix: | |
python-version: [3.7, "3.10"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up python | |
id: setup-python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'poetry' | |
- name: Install project | |
run: poetry install --no-interaction | |
- name: Run tests | |
run: poetry run pytest -v tests/ |