fixed data source should be in here for testing #426
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: | |
- push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.0' | |
- name: Setup go-task | |
uses: pnorton5432/setup-task@v1 | |
with: | |
task-version: 3.29.1 | |
- name: Build and Test | |
run: | | |
task go:build | |
task go:test |