Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmdm committed Oct 20, 2023
1 parent f080d19 commit 3373845
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Go Test

on: [push, pull_request]

jobs:
test:
name: Run Tests
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.21"

- name: Install dependencies
run: go mod download

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

0 comments on commit 3373845

Please sign in to comment.