2022-01-03 13:43:52 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
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-02-05 23:01:23 +00:00
|
|
|
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142
|
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
|
|
|
|
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
|
|
|
|
|
|
|
|
- name: Rust toolchain
|
2024-04-15 23:04:35 +00:00
|
|
|
uses: dtolnay/rust-toolchain@bb45937a053e097f8591208d8e74c90db1873d07
|
2022-01-03 13:43:52 +00:00
|
|
|
with:
|
2023-11-19 00:05:00 +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
|
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-02-05 23:01:23 +00:00
|
|
|
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142
|
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
|
|
|
|
|
|
|
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
|
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-04-15 23:04:35 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@bb45937a053e097f8591208d8e74c90db1873d07
|
2022-01-03 13:43:52 +00:00
|
|
|
with:
|
2023-11-19 00:05:00 +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 }}
|