add support for gzipped metadata #82
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: null | |
push: | |
branches: | |
- master | |
jobs: | |
multiple_checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 'stable' | |
- run: go version | |
- name: Lint | |
run: make lint | |
- name: Vet | |
run: go vet ./... | |
- name: Tidy | |
run: go mod tidy | |
- name: Fail if changes | |
run: git diff-index --exit-code HEAD |