🌱 Add v0.5.0,v0.3.2 milestones and clean up old ones #23
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: PR tests | |
on: | |
pull_request: | |
branches: [ "main" ] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
- run: go install github.com/rhysd/actionlint/cmd/actionlint@latest | |
- run: | | |
GOPATH="$(go env GOPATH)" | |
export PATH="${PATH}:${GOPATH}/bin" | |
actionlint | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
- run: go test ./... |