Skip to content

refactor!: remove gg20 support #720

refactor!: remove gg20 support

refactor!: remove gg20 support #720

Workflow file for this run

name: Linting
on:
- pull_request
jobs:
lint:
strategy:
matrix:
os:
# - ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code and submodule
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
override: true
components: rustfmt, clippy
- name: Run cargo clippy with all features
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features --all-targets -- -D warnings