chore(deps): update actions/checkout action to v4.2.2 (#857) #1119
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
# matrixctl | |
# Copyright (c) 2020 Michael Sasser <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU General Public License for more details. | |
# | |
# You should have received a copy of the GNU General Public License | |
# along with this program. If not, see <http://www.gnu.org/licenses/>. | |
--- | |
name: Python CI | |
on: | |
push: | |
branches: ["main"] | |
paths-ignore: ["*.md"] | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: "Set Python Version ${{ matrix.python-version }}" | |
run: echo '${{ matrix.python-version }}' > .python-version | |
- name: Setup Rye | |
id: setup-rye | |
uses: eifinger/setup-rye@v4 | |
with: | |
version: "0.41.0" | |
enable-cache: true | |
cache-prefix: python-${{ matrix.python-version }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Project Dependencies | |
run: | | |
rye pin --no-update-requires-python '${{ matrix.python-version }}' | |
rye sync --all-features | |
- name: Run pre-commit | |
run: | | |
. .venv/bin/activate | |
pre-commit run --all-files | |
- name: Sphinx Build | |
working-directory: ./docs | |
run: | | |
. ../.venv/bin/activate | |
make html | |
- name: Test with pytest | |
run: | | |
. .venv/bin/activate | |
rye test |