Skip to content

Bump proc-macro2 from 1.0.81 to 1.0.82 #2716

Bump proc-macro2 from 1.0.81 to 1.0.82

Bump proc-macro2 from 1.0.81 to 1.0.82 #2716

Workflow file for this run

on:
pull_request: {}
push:
branches: master
name: Continuous integration
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- run: sudo apt update && sudo apt install libsqlite3-dev
- uses: actions-rs/cargo@v1
with:
command: build
- uses: actions-rs/cargo@v1
with:
command: test
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}