File: go.yaml

package info (click to toggle)
golang-github-santhosh-tekuri-jsonschema 5.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 476 kB
  • sloc: makefile: 15
file content (29 lines) | stat: -rw-r--r-- 785 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: gotest
on: [push, pull_request]
jobs:
  gotest:
    name: gotest
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macos-latest]
        go: [1.19]
    steps:
    - name: setup go
      uses: actions/setup-go@v3
      with:
        go-version: ${{ matrix.go }}
    - name: checkout
      uses: actions/checkout@v3
      with:
        submodules: true
      # https://github.com/golang/go/issues/49138
    - name: disable MallocNanoZone for macos-latest
      run: echo "MallocNanoZone=0" >> $GITHUB_ENV
      if: runner.os == 'macOS'
    - name: test
      run: go test -race -coverprofile coverage.txt -covermode atomic
    - name: upload coverage
      uses: codecov/codecov-action@v3
      with:
        files: coverage.txt