Stop walk early if we are on mutable path #343
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: ci | |
on: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
command: [ | |
"lint/go", | |
"test/go", | |
] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Run ${{ matrix.command }} | |
run: bin/builder generate/go tidy/go ${{ matrix.command }} git/isclean |