Ignore test on runtime #82
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |