3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-15 00:19:29 +01:00
ergo/.github/workflows/build.yml

33 lines
677 B
YAML
Raw Normal View History

2021-05-27 03:51:30 +02:00
name: "build"
on:
pull_request:
branches:
- "master"
- "stable"
push:
branches:
- "master"
- "stable"
jobs:
build:
2023-09-24 19:22:46 +02:00
runs-on: "ubuntu-22.04"
2021-05-27 03:51:30 +02:00
steps:
- name: "checkout repository"
uses: "actions/checkout@v3"
2021-05-27 03:51:30 +02:00
- name: "setup go"
uses: "actions/setup-go@v3"
2021-05-27 03:51:30 +02:00
with:
2024-08-16 05:50:27 +02:00
go-version: "1.23"
2021-05-27 03:51:30 +02:00
- 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"