File: test.yml

package info (click to toggle)
golang-github-mostynb-go-grpc-compression 1.2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: makefile: 7
file content (22 lines) | stat: -rw-r--r-- 340 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
name: go test

on:
  push:
    tags:
      - v*
    branches:
      - main
  pull_request:

jobs:
  linux:
    name: go test
    runs-on: ubuntu-20.04
    steps:
      - name: checkout code
        uses: actions/checkout@v3
      - name: test
        run: |
          set -euo pipefail
          go test ./...
          go test -race ./...