Skip to content

Commit

Permalink
Merge pull request #1 from ownerofglory/feature/add-test-pipeline
Browse files Browse the repository at this point in the history
Add test pipeline
  • Loading branch information
ownerofglory authored Feb 15, 2024
2 parents 81ada94 + 4553204 commit 11ffccf
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 11ffccf

Please sign in to comment.