Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
okedeji committed Dec 28, 2023
1 parent e37e2a2 commit 8954d56
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Pipeline for Test
'on':
- pull_request
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: '^1.21'
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v3

- name: run recursive test
run: |
set -e
go test -v ./...
4 changes: 0 additions & 4 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ jobs:
- name: Prepare Release Variables
id: vars
uses: ignite/cli/actions/release/vars@main
- name: run recursive test
run: |
set -e
go test -v ./...
- name: build
run: |
GOOS=linux GOARCH=amd64 make
Expand Down

0 comments on commit 8954d56

Please sign in to comment.