Skip to content

Commit

Permalink
Merge pull request #1 from MeztliRA/add-github-actions
Browse files Browse the repository at this point in the history
Create actions.yml
  • Loading branch information
MeztliRA authored Mar 26, 2021
2 parents b4597fd + bef6a18 commit ce63f9f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Go

on:
push:
branches: [ main ]
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: Test
run: go test

0 comments on commit ce63f9f

Please sign in to comment.