Skip to content

Bump proc-macro2 from 1.0.63 to 1.0.64 #1440

Bump proc-macro2 from 1.0.63 to 1.0.64

Bump proc-macro2 from 1.0.63 to 1.0.64 #1440

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
rust: [stable, nightly]
steps:
- run: sudo apt-get install --yes --no-install-recommends libx11-xcb-dev libxcb-shape0-dev libxcb-xfixes0-dev
if: matrix.os == 'ubuntu-latest'
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
components: rustfmt, clippy
- run: cargo fmt -- --check
- run: cargo clippy
- run: cargo test
env:
RUST_BACKTRACE: full
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: github/super-linter@v5
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_RUST_CLIPPY: false
VALIDATE_NATURAL_LANGUAGE: false