Skip to content

Commit

Permalink
Feat: add pipeline for qa
Browse files Browse the repository at this point in the history
  • Loading branch information
Forestsoft-de committed Jan 5, 2024
1 parent 1fb2027 commit 3536875
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Pipeline"
on:
push:
jobs:
test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Build
run: go build -v
- name: Test
run: go test -v ./...

0 comments on commit 3536875

Please sign in to comment.