Skip to content

Commit

Permalink
Add initial pull-request GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
mszostok committed Jan 29, 2021
1 parent 2f6e3bb commit 0078c61
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Pull request testing

on:
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.15
- name: "Initial Action Step"
run: echo "Initial Action"

0 comments on commit 0078c61

Please sign in to comment.