Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/go_action' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Toby Bellwood committed Sep 6, 2021
2 parents ab67f73 + 36b3a89 commit dfff827
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Go

on:
push:
branches: "*"
pull_request:
branches: [ main ]

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: |
chmod 765 test/filemode.txt
go test -v ./...
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit dfff827

Please sign in to comment.