Skip to content

Commit

Permalink
Merge pull request #32 from sebdah/sebdah-patch-1
Browse files Browse the repository at this point in the history
Create initial GitHub Actions flow
  • Loading branch information
sebdah authored May 16, 2020
2 parents 5d28ee4 + b29ef60 commit a6cf4f4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Go

on: [push]

jobs:

build:
name: Run tests
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.14
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Build
run: go build -v .

- name: Test
run: go test -v ./...

0 comments on commit a6cf4f4

Please sign in to comment.