update CI

This commit is contained in:
NotAShelf 2023-06-03 22:35:28 +03:00
parent 2503b29592
commit e5feb4a2fc
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22

View file

@ -1,5 +1,8 @@
name: Go Build # Go Build & Release CI
name: Go Build & Release CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: on:
push: push:
branches: branches:
@ -7,22 +10,21 @@ on:
pull_request: pull_request:
branches: branches:
- main - main
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@latest
with:
fetch-depth: 0
- run: git fetch --force --tags
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v2 uses: actions/setup-go@v4
with: with:
go-version: 1.20 go-version: "1.20.x"
cache: true
- name: Install external dependencies
run: go mod download
- name: Build - name: Build
run: go build -o go-cdn run: go build -v ./...