3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-15 00:19:29 +01:00
ergo/.github/workflows/build.yml
Shivaram Lingamneni de1be675f5 upgrade go to 1.19
2022-08-03 00:56:19 -04:00

33 lines
677 B
YAML

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.19"
- 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"