Skip to content

Commit

Permalink
set up CI/CD using GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
skaes committed Nov 1, 2021
1 parent 07617cd commit e34eb8f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
version: [1.16.9, 1.17.2]

steps:
- uses: actions/checkout@v2

- name: Setup Go environment
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.version }}

- name: Install dependencies
run: sudo apt-get install libzmq5-dev

- name: Test
run: make test

0 comments on commit e34eb8f

Please sign in to comment.