25 lines
361 B
YAML
25 lines
361 B
YAML
name: Go Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Show environment
|
|
run: |
|
|
pwd
|
|
ls -la
|
|
go version
|
|
|
|
- name: Download dependencies
|
|
run: |
|
|
go mod download
|
|
|
|
- name: Run tests
|
|
run: |
|
|
go test ./... -v |