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