Skip to content

Ignore test on runtime #83

Ignore test on runtime

Ignore test on runtime #83

Workflow file for this run

name: Lint
concurrency:
group: lint-${{ github.head_ref }}
cancel-in-progress: true
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v15
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Install typos
run: nix develop -c 'cargo' install typos-cli
- name: Check typo
run: nix develop -c 'typos' --exclude ssvm-evmc
- name: Super-Linter
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
VALIDATE_RUST_2021: true
# Clippy is not updated for Rust 1.58, temp disable
# VALIDATE_RUST_CLIPPY: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}