Skip to content

ci: Don't fast-fail e2e jobs #254

ci: Don't fast-fail e2e jobs

ci: Don't fast-fail e2e jobs #254

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: go mod
permissions:
contents: read
jobs:
go-mod:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1'
- run: |
if [ $(go mod tidy && git diff | wc -l) -gt 0 ]; then git diff && exit 1; fi