utls/.github/workflows/go_1_21.yml
Gaukas Wang 835e073578
ci: update names and badges for CI actions (#211)
* Update and rename go_1_21_rc3.yml to go_1_21.yml

* Update go_1_20.yml

* Update README.md
2023-08-03 23:32:02 -06:00

27 lines
548 B
YAML

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: "Go 1.21"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
go_build_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.0-rc.4'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...