Skip to content

Commit

Permalink
Merge 0fab140 into 21bd3c2
Browse files Browse the repository at this point in the history
  • Loading branch information
variadico committed Sep 11, 2019
2 parents 21bd3c2 + 0fab140 commit 59fd269
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Go
on: [push]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
with:
path: go/src/github.com/
- name: Setup Go
uses: actions/setup-go@v1
with:
go-version: '1.12.9'
- name: Run tests
run: |
echo "--- pwd ---"
pwd
echo "--- ls ---"
ls
echo "--- go env ---"
go env

0 comments on commit 59fd269

Please sign in to comment.