Skip to content

Bump github.com/lmittmann/w3 from 0.14.6 to 0.16.0 in /example #27

Bump github.com/lmittmann/w3 from 0.14.6 to 0.16.0 in /example

Bump github.com/lmittmann/w3 from 0.14.6 to 0.16.0 in /example #27

Workflow file for this run

name: Go
on:
- push
- pull_request
jobs:
fmt_vet:
name: Fmt & Vet
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: go fmt
run: |
gofmt -s -d . > fmt.out
cat fmt.out
test -z $(cat fmt.out)
- name: go vet
run: go vet ./...
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
- uses: huff-language/huff-toolchain@v3
with:
version: nightly
- name: go test
run: go test ./...