irc-go/.github/workflows/build.yml
Shivaram Lingamneni dc4c9322a5 add CI workflow
2023-02-27 20:20:44 -05:00

22 lines
387 B
YAML

name: "build"
on:
pull_request:
branches:
- "master"
push:
branches:
- "master"
jobs:
build:
runs-on: "ubuntu-22.04"
steps:
- name: "checkout repository"
uses: "actions/checkout@v3"
- name: "setup go"
uses: "actions/setup-go@v3"
with:
go-version: "1.20"
- name: "make test"
run: "make test"