Skip to content

Merge pull request #71 from codeafix/dependabot/github_actions/action… #149

Merge pull request #71 from codeafix/dependabot/github_actions/action…

Merge pull request #71 from codeafix/dependabot/github_actions/action… #149

Workflow file for this run

name: build
on:
push:
branches: [ develop, main ]
pull_request:
branches: [ develop, main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build
run: |
./build.sh
- name: Test
run: |
./test.sh
- name: Coverage
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}