Bump braces from 3.0.2 to 3.0.3 in /tools/mdlint #296
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: Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
unit-test: | |
name: unit test | |
runs-on: ubuntu-latest | |
env: | |
TZ: Asia/Tokyo | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Checkout dependencies | |
run: | | |
go get github.com/x-motemen/gobump/cmd/gobump | |
make devel-deps | |
- name: Test NGSI Go | |
run: make unit-test | |
- name: Convert coverage to lcov | |
uses: jandelgado/gcov2lcov-action@v1.0.8 | |
with: | |
working-directory: coverage | |
- name: Coveralls | |
uses: coverallsapp/github-action@v1.1.2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: coverage/coverage.lcov |