This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
ci: add a rustfmt and clippy job #180
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: Check | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main"] | |
tags: ["*"] | |
pull_request: | |
concurrency: | |
group: check-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: test ${{ matrix.py }} ${{ matrix.os }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
py: | |
- "3.13" | |
- "3.12" | |
- "3.11" | |
- "3.10" | |
- "3.9" | |
- "3.8" | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install the latest version of uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: "pyproject.toml" | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install tox | |
run: uv tool install --python-preference only-managed --python 3.13 tox --with tox-uv | |
- name: Install Python | |
if: startsWith(matrix.env, '3.') && matrix.env != '3.13' | |
run: uv python install --python-preference only-managed ${{ matrix.env }} | |
- uses: moonrepo/setup-rust@v1 | |
with: | |
cache-base: main | |
bins: cargo-tarpaulin | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: setup test suite | |
run: tox run -vv --notest --skip-missing-interpreters false -e ${{ matrix.py }} | |
- name: run test suite | |
run: tox run --skip-pkg-install -e ${{ matrix.py }} | |
env: | |
PYTEST_ADDOPTS: "-vv --durations=20" | |
check: | |
name: tox env ${{ matrix.env }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
env: | |
- type | |
- dev | |
- pkg_meta | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install the latest version of uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: "pyproject.toml" | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install tox | |
run: uv tool install --python-preference only-managed --python 3.13 tox --with tox-uv | |
- name: Setup test suite | |
run: tox run -vv --notest --skip-missing-interpreters false -e ${{ matrix.env }} | |
- name: Run test suite | |
run: tox run --skip-pkg-install -e ${{ matrix.env }} | |
env: | |
PYTEST_ADDOPTS: "-vv --durations=20" | |
rust-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Rustfmt Check | |
uses: actions-rust-lang/rustfmt@v1 | |
- name: Lint | |
run: cargo clippy --all-targets -- -D warnings |