Skip to content

Commit

Permalink
Add test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ownerofglory committed Feb 15, 2024
1 parent 81ada94 commit 4553204
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Test pipeline

on: [push]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: go mod download
- name: Test with the Go CLI
run: go test ./...

0 comments on commit 4553204

Please sign in to comment.