Compare commits

...

4 Commits

Author SHA1 Message Date
aa7fa2fe9d
Update FUNDING.yml
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-15 22:50:50 +02:00
56203fac20
Create FUNDING.yml 2021-09-28 22:54:05 +02:00
3e9eb106ac
Merge pull request #42 from pstuifzand/enable-go-workflow-actions
Create go workflow
2021-08-11 12:48:43 +02:00
d5cd608698
Create go workflow 2021-08-11 12:47:20 +02:00
2 changed files with 38 additions and 0 deletions

13
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1,13 @@
# These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: pstuifzand
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom:
- https://peterstuifzand.nl/pay.html

25
.github/workflows/go.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...