Added CI/CD for pushing to feature branch
All checks were successful
Test / build (push) Successful in 43s
All checks were successful
Test / build (push) Successful in 43s
This commit is contained in:
parent
c689814ba2
commit
d501a3af25
20
.forgejo/workflows/test.yaml
Normal file
20
.forgejo/workflows/test.yaml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
name: Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- feature/*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Setup Go
|
||||||
|
uses: actions/setup-go@v2
|
||||||
|
with:
|
||||||
|
go-version: 1.22.4
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
make test
|
Loading…
Reference in a new issue