Skip to content

Batch publish

Batch publish #2

Workflow file for this run

name: Check Pythnet
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.60.0
components: rustfmt, clippy
override: true
- name: Install nightly
run: rustup install nightly-2022-04-01
- name: Check formatting
run: cargo +nightly-2022-04-01 fmt -- --check
- name: Check clippy
run: cargo clippy --all-targets -- --deny warnings
- name: Run tests
run: cargo test