chore: rename to streamnx #3
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: Go | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.21 | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: go mod download | |
- name: Run linter | |
run: go install github.com/golangci/golangci-lint/cmd/[email protected] && make lint | |
- name: Run tests | |
run: make test |