Update ci.yml #105
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
on: [push, pull_request] | |
name: CI | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.22.x, 1.23.x] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install chrome | |
uses: browser-actions/setup-chrome@latest | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Lint | |
run: | | |
go vet . | |
gofmt -l -s -w . | |
- name: Install cleanenv | |
run: go install ./cmd/cleanenv | |
- name: Test | |
run: cleanenv -remove-prefix GITHUB_ -remove-prefix JAVA_ -remove-prefix PSModulePath -remove-prefix STATS_ -remove-prefix RUNNER_ -- go test -v -race -timeout 5m ./... | |
- name: Install | |
run: go install |