2024-12-27 06:32:50 +01:00
|
|
|
name: Go
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "master" ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-12-27 06:44:21 +01:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
2024-12-27 06:32:50 +01:00
|
|
|
|
|
|
|
- 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 ./...
|
2024-12-27 06:44:21 +01:00
|
|
|
|
|
|
|
- name: Upload binary as artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: licensmith
|
|
|
|
path: licensmith
|