Skip to content

fix: fix conflict with main, will refactor later #76

fix: fix conflict with main, will refactor later

fix: fix conflict with main, will refactor later #76

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