Skip to content

ci: creating github actions config (#22) #7

ci: creating github actions config (#22)

ci: creating github actions config (#22) #7

Workflow file for this run

name: pipeline
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install dependencies
run: make depend
- name: Run tests
run: make test