Replace all Perl scripts with Rust #168
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 | |
on: [push, pull_request] | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
jobs: | |
lint: | |
name: Check that code is lint clean using precious | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install mise | |
run: | | |
set -e | |
set -x | |
curl https://mise.run | sh | |
mise install | |
- name: Run precious | |
run: | | |
mise exec -- precious lint -a |