👷 Created Gitea Action configuration
Go / build (push) Failing after 5m11s Details

This commit is contained in:
Maxim Lebedev 2023-04-14 18:01:00 +06:00
parent 1969f94322
commit 9650b6b966
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
---
name: "Go"
on: "push"
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: "https://gitea.com/actions/checkout@v3"
- name: "Setup Go"
uses: "https://gitea.com/actions/setup-go@v3"
with:
cache-dependency-path: "go.sum"
cache: true
go-version-file: "go.mod"
- name: "Test"
run: "make check"
- name: "Build"
run: "make"