Skip to content

Commit

Permalink
Added first draft of CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterEvarior authored and MasterEvarior committed Apr 18, 2024
1 parent 9ab15b8 commit 1529e0e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Go
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod

- name: Build
run: go build -v ./...

- name: Test
uses: robherley/go-test-action@v0

0 comments on commit 1529e0e

Please sign in to comment.