krz/devianter
A DeviantArt guest API library for Go.
clone: git clone https://gitbay.org/krz/devianter.git
v0.3.0: .github/workflows/go.yml · raw
1name: Go
2
3on:
4 push:
5 branches: [ "main" ]
6 pull_request:
7 branches: [ "main" ]
8
9jobs:
10
11 build:
12 runs-on: ubuntu-latest
13 steps:
14 - uses: actions/checkout@v7
15
16 - name: Set up Go
17 uses: actions/setup-go@v6
18 with:
19 go-version: '1.20'
20
21 - name: Build
22 run: go build -v ./...
23
24 - name: Test
25 run: go test -v ./...