File: main.yaml

package info (click to toggle)
golang-github-felixge-httpsnoop 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 176 kB
  • sloc: makefile: 10
file content (23 lines) | stat: -rw-r--r-- 439 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
name: main
on: [push, pull_request]
jobs:
  test:
    strategy:
      matrix:
        go:
          - 1.18.x
          - 1.17.x
          - 1.16.x
        os:
          - ubuntu-latest
    name: ${{ matrix.os }}/go${{ matrix.go }}
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v3

      - name: Setup go
        uses: actions/setup-go@v3
        with:
          go-version: ${{ matrix.go }}

      - run: make ci