ci
This commit is contained in:
parent
47493b99fd
commit
ed0bec34de
35
.github/workflows/ci.yaml
vendored
Normal file
35
.github/workflows/ci.yaml
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
name: Go
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set up Go 1.x
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ^1.21
|
||||
id: go
|
||||
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
bash build.sh
|
||||
|
||||
- name: Test
|
||||
run: go test -race -v ./...
|
||||
|
||||
- name: Upload a Build Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
# A file, directory or wildcard pattern that describes what to upload
|
||||
path: cmd/authlibskin/out/*
|
||||
name: ${{ github.run_number }}
|
Loading…
x
Reference in New Issue
Block a user