Skip to content

bumping version to publish new version with (hopefully) correct docs … #39

bumping version to publish new version with (hopefully) correct docs …

bumping version to publish new version with (hopefully) correct docs … #39

Workflow file for this run

name: lint
on:
pull_request:
branches:
- master
push:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
name: clippy
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: clippy
override: true
- name: run clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
name: clippy output