mirror of
https://github.com/NotAShelf/go-grep-cache.git
synced 2024-11-22 15:40:42 +00:00
CI: build go
This commit is contained in:
parent
4eecdcc53e
commit
fc633d3659
1 changed files with 27 additions and 0 deletions
27
.github/workflows/go.yml
vendored
Normal file
27
.github/workflows/go.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Go
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: '1.20'
|
||||
|
||||
- name: Build
|
||||
run: go build -v ./.
|
||||
|
||||
- name: Cache
|
||||
uses: actions/cache@v3.3.2
|
||||
|
||||
|
Loading…
Reference in a new issue