Actually useful CI config added

This commit is contained in:
Nicola Zangrandi 2025-01-21 17:05:11 +01:00 committed by Nicola Zangrandi
parent 8203a26fdc
commit f6ea1162da
No known key found for this signature in database
GPG key ID: 3C640B6656B9495F
2 changed files with 17 additions and 7 deletions

View file

@ -0,0 +1,17 @@
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
cache-dependency-path: "**/*.sum"
- run: go build
- uses: actions/upload-artifact@v3
with:
name: fj
path: fj

View file

@ -1,7 +0,0 @@
on: [push]
jobs:
test:
runs-on: alpine-latest
steps:
- shell: sh
run: echo using sh here