mise: 2025.1.4 #169
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: "Test" | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
# Ensure we run only one job at a time. | |
concurrency: | |
group: "elint-${{ github.repository }}-${{ github.ref }}" | |
jobs: | |
elint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jdx/mise-action@v2 | |
with: | |
experimental: true | |
- name: Setup Environment | |
working-directory: .tools | |
run: |- | |
mise run build | |
docker pull ghcr.io/jaredallard/overlay:updater | |
- name: Run linter | |
run: mise run lint |