Skip to content

Commit

Permalink
Run go tests in CI (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
VojtechVitek authored May 7, 2024
1 parent 9da24e9 commit 88f5784
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- "**"

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.20"

- name: Run tests
run: go test ./...

0 comments on commit 88f5784

Please sign in to comment.