Merge pull request #1656 from kashike/feature/github-actions

feat: build with github actions
This commit is contained in:
Shivaram Lingamneni 2021-05-26 23:30:05 -04:00 committed by GitHub
commit 60d351f9ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

32
.github/workflows/build.yml vendored Normal file

@ -0,0 +1,32 @@
name: "build"
on:
pull_request:
branches:
- "master"
- "stable"
push:
branches:
- "master"
- "stable"
jobs:
build:
runs-on: "ubuntu-20.04"
steps:
- name: "checkout repository"
uses: "actions/checkout@v2"
- name: "setup go"
uses: "actions/setup-go@v2"
with:
go-version: "1.16.4"
- name: "install python3-pytest"
run: "sudo apt install -y python3-pytest"
- name: "make install"
run: "make install"
- name: "make test"
run: "make test"
- name: "make smoke"
run: "make smoke"
- name: "make irctest"
run: "make irctest"