ddns/.github/workflows/test_workflow.yml
maximo tejeda 4d1e262afd
All checks were successful
dev workflow / build (push) Successful in 5s
RENAMe jub
2024-11-16 13:56:09 -04:00

29 lines
559 B
YAML

name: dev workflow
on:
push:
branches:
- main
- dev
- 'feature/**'
jobs:
build:
runs-on: ubuntu-latest
env:
TOKEN: ${{ secrets.TOKEN }}
USERNAME: ${{ vars.USERNAME }}
TAG_VERSION: ${{ github.ref_name }}
steps:
- name:
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
run: go build -v ./...
- name: test with go
run: go test -v ./...