Skip to content

Commit

Permalink
Bare minimum pipeline for go.
Browse files Browse the repository at this point in the history
  • Loading branch information
masv3971 committed Oct 13, 2023
1 parent 34a6a23 commit ddde15c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: golang

on: [push, pull_request]

jobs:

tests:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod

- name: Run tests
run: |
make test

0 comments on commit ddde15c

Please sign in to comment.