2022-01-03 13:43:52 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
2024-05-05 08:38:50 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-06-21 00:00:11 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-01-03 13:43:52 +00:00
|
|
|
jobs:
|
|
|
|
Lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-06-21 00:00:11 +00:00
|
|
|
- name: Harden Runner
|
2024-04-30 03:30:57 +00:00
|
|
|
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
disable-sudo: true
|
|
|
|
egress-policy: block
|
|
|
|
allowed-endpoints: >
|
|
|
|
github.com:443
|
|
|
|
static.rust-lang.org:443
|
|
|
|
|
2024-05-05 08:42:14 +00:00
|
|
|
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
|
2024-05-05 08:38:50 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-06-21 00:00:11 +00:00
|
|
|
|
|
|
|
- name: Rust toolchain
|
2024-05-04 04:55:05 +00:00
|
|
|
uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a
|
2022-01-03 13:43:52 +00:00
|
|
|
with:
|
2024-05-05 08:38:50 +00:00
|
|
|
toolchain: "1.73.0"
|
2022-01-03 13:43:52 +00:00
|
|
|
components: rustfmt
|
2023-06-21 00:00:11 +00:00
|
|
|
|
2022-01-03 13:43:52 +00:00
|
|
|
- name: Check Formatting
|
2023-02-14 13:20:59 +00:00
|
|
|
run: cargo fmt --check
|
2022-01-03 13:43:52 +00:00
|
|
|
|
|
|
|
Test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2024-04-24 12:01:32 +00:00
|
|
|
python-version: ["3.12"]
|
|
|
|
allow-prereleases: [false]
|
2022-01-03 13:43:52 +00:00
|
|
|
include:
|
2023-11-01 05:58:18 +00:00
|
|
|
- os: ubuntu-latest
|
2024-04-24 12:01:32 +00:00
|
|
|
python-version: "3.13"
|
|
|
|
allow-prereleases: true
|
2023-01-13 16:29:38 +00:00
|
|
|
- os: ubuntu-latest
|
|
|
|
python-version: "3.11"
|
2024-04-24 12:01:32 +00:00
|
|
|
allow-prereleases: false
|
2022-01-03 13:43:52 +00:00
|
|
|
- os: ubuntu-latest
|
|
|
|
python-version: "3.10"
|
2024-04-24 12:01:32 +00:00
|
|
|
allow-prereleases: false
|
2024-05-05 08:38:50 +00:00
|
|
|
- os: ubuntu-latest
|
|
|
|
python-version: 3.9
|
|
|
|
allow-prereleases: false
|
2022-01-03 13:43:52 +00:00
|
|
|
- os: ubuntu-latest
|
|
|
|
python-version: 3.8
|
2024-04-24 12:01:32 +00:00
|
|
|
allow-prereleases: false
|
2022-01-03 13:43:52 +00:00
|
|
|
runs-on: "${{ matrix.os }}"
|
|
|
|
steps:
|
2023-06-21 00:00:11 +00:00
|
|
|
- name: Harden Runner
|
2024-04-30 03:30:57 +00:00
|
|
|
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
disable-sudo: true
|
|
|
|
egress-policy: block
|
|
|
|
allowed-endpoints: >
|
|
|
|
api.github.com:443
|
|
|
|
crates.io:443
|
|
|
|
files.pythonhosted.org:443
|
|
|
|
github.com:443
|
|
|
|
pypi.org:443
|
|
|
|
static.crates.io:443
|
|
|
|
index.crates.io:443
|
|
|
|
static.rust-lang.org:443
|
2023-11-01 05:58:18 +00:00
|
|
|
objects.githubusercontent.com:443
|
2023-06-21 00:00:11 +00:00
|
|
|
|
2024-05-05 08:42:14 +00:00
|
|
|
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
|
2024-05-05 08:38:50 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2024-04-01 23:04:13 +00:00
|
|
|
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # 5.1.0
|
2022-01-03 13:43:52 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2024-04-24 12:01:32 +00:00
|
|
|
allow-prereleases: ${{ matrix.allow-prereleases }}
|
2023-06-21 00:00:11 +00:00
|
|
|
|
2024-05-04 04:55:05 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a
|
2022-01-03 13:43:52 +00:00
|
|
|
with:
|
2024-05-05 08:38:50 +00:00
|
|
|
toolchain: "1.73.0"
|
2023-06-21 00:00:11 +00:00
|
|
|
|
2024-01-15 22:20:16 +00:00
|
|
|
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # 2.7.3
|
2022-01-17 12:57:34 +00:00
|
|
|
- run: python3 -m pip install nox
|
|
|
|
- run: nox -s test-${{ matrix.python-version }}
|