Skip to content

Commit

Permalink
Add an explicit build and test job for the icq relayer (#1069)
Browse files Browse the repository at this point in the history
* Create icq-relayer-build-test.yml

* Update icq-relayer-build-test.yml

* Update icq-relayer-build-test.yml
  • Loading branch information
faddat authored Jan 21, 2024
1 parent e278393 commit 96efdd3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/icq-relayer-build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

on: [push, pull_request]
name: icq-relayer: build and test
jobs:
test:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: go test icq-relayer/...
build:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: go build icq-relayer/...

0 comments on commit 96efdd3

Please sign in to comment.