Skip to content

ci: release ci & build test ci #1

ci: release ci & build test ci

ci: release ci & build test ci #1

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.21.0'
- name: Build
run: go build ./cmd/epay
- name: Test
run: go test -v ./...