Skip to content

feat: upgrade to v1.20.0-rc2 #21

feat: upgrade to v1.20.0-rc2

feat: upgrade to v1.20.0-rc2 #21

Workflow file for this run

name: Build and Lint
on:
push:
branches:
- main
pull_request:
jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
- name: Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features