Skip to content

Commit

Permalink
try github action
Browse files Browse the repository at this point in the history
  • Loading branch information
cromega authored May 4, 2020
1 parent e9bc2d3 commit e28d3eb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest
container: golang:1.14-alpine3.11
steps:
- name: Check out
uses: actions/checkout@v2

- name: Prepare container
run: |
apk add --no-cache openssh-keygen
chmod 600 testdata/real_id_rsa
- name: Test
run: go test -v

0 comments on commit e28d3eb

Please sign in to comment.