Skip to content

tests: migrate tests from circleci to github actions #4

tests: migrate tests from circleci to github actions

tests: migrate tests from circleci to github actions #4

Workflow file for this run

---
name: CI
# yamllint disable-line rule:truthy
on:
pull_request:
branches:
- "*"
push:
branches:
- "master"
jobs:
build:
name: build
runs-on: ubuntu-22.04
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
- name: Build
shell: bash
run: |
go mod init github.com/progrium/go-basher
go mod tidy
make build
- name: Test
shell: bash
run: |
go get -d -t
go test -v