Merge pull request #25 from tomodian/feature/go-update #100
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: Test on Linux | |
on: | |
pull_request: | |
branches: | |
- develop | |
- master | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup runtime | |
uses: actions/setup-go@v5 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Test | |
run: make test | |
- name: Upload report to Codecov | |
run: bash <(curl -s https://codecov.io/bash) |