Skip to content

Merge pull request #2 from swiftwave-org/dependabot/go_modules/golang… #15

Merge pull request #2 from swiftwave-org/dependabot/go_modules/golang…

Merge pull request #2 from swiftwave-org/dependabot/go_modules/golang… #15

Workflow file for this run

name: Golang Test CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: read
jobs:
test:
strategy:
matrix:
go: ["1.21.3"]
os: [macos-latest, ubuntu-latest]
name: lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
cache: true
- name: go-test
run: go test -v ./...