Skip to content

chore: release version 0.0.5 #18

chore: release version 0.0.5

chore: release version 0.0.5 #18

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
types: [checks_requested]
workflow_dispatch:
permissions:
contents: read
env:
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always
jobs:
lint:
name: Lint (${{ matrix.os }})
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- os: linux
runs-on: ubuntu-latest
# - os: windows
# runs-on: windows-latest
steps:
- name: Check out repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install Rust
run: rustup show
- name: Cache dependencies
uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
with:
# Workaround for https://github.com/Swatinem/rust-cache/issues/341
cache-bin: "false"
- name: Run linters (Unix)
if: matrix.os == 'linux'
run: ./bin/lint
# - name: Run linters (Windows)
# if: matrix.os == 'windows'
# run: ./win/lint.ps1