Skip to content

build(deps): bump pypa/gh-action-pypi-publish from 1.8.7 to 1.8.8 (#91) #115

build(deps): bump pypa/gh-action-pypi-publish from 1.8.7 to 1.8.8 (#91)

build(deps): bump pypa/gh-action-pypi-publish from 1.8.7 to 1.8.8 (#91) #115

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@55d479fb1c5bcad5a4f9099a5d9f37c8857b2845
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
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af
with:
toolchain: stable
components: rustfmt
- name: Check Formatting
run: cargo fmt --check
Test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.9]
include:
- os: ubuntu-latest
python-version: "3.11"
- os: ubuntu-latest
python-version: "3.10"
- os: ubuntu-latest
python-version: 3.8
- os: ubuntu-latest
python-version: 3.7
runs-on: "${{ matrix.os }}"
steps:
- name: Harden Runner
uses: step-security/harden-runner@55d479fb1c5bcad5a4f9099a5d9f37c8857b2845
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
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
- uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # 4.6.1
with:
python-version: ${{ matrix.python-version }}
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af
with:
toolchain: stable
- uses: Swatinem/rust-cache@dd05243424bd5c0e585e4b55eb2d7615cdd32f1f # 2.5.1
- run: python3 -m pip install nox
- run: nox -s test-${{ matrix.python-version }}