1
0
Wiktor Zykubek 4d5259d671
All checks were successful
Go / build (push) Successful in 13s
ci: rename .gitea directory to .github
This way, actions can be run on both Gitea and GitHub.
2024-12-27 06:54:02 +01:00

31 lines
492 B
YAML

name: Go
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.4'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Upload binary as artifact
uses: actions/upload-artifact@v3
with:
name: licensmith
path: licensmith