File: push.yml

package info (click to toggle)
golang-github-cli-browser 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 120 kB
  • sloc: makefile: 3
file content (21 lines) | stat: -rw-r--r-- 421 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
on: [push, pull_request]

name: CI
jobs:
  test:
    strategy:
      matrix:
        go: [ '1.21' ]
        os: [ ubuntu-latest, macos-latest, windows-latest ]
      fail-fast: false

    runs-on: ${{ matrix.os }}
    name: Test suite

    steps:
      - uses: actions/checkout@v4
      - name: Setup go
        uses: actions/setup-go@v4
        with:
          go-version: ${{ matrix.go }}
      - run: go test -v ./...