Skip to content

Bump actions/checkout from 3.5.0 to 3.5.3 (#1101) #189

Bump actions/checkout from 3.5.0 to 3.5.3 (#1101)

Bump actions/checkout from 3.5.0 to 3.5.3 (#1101) #189

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
tests:
name: Go ${{ matrix.go-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
go-version: ["1.15"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
go-version: ${{ matrix.go-version }}
- name: Run Tests
run: |
go test -cover ./...
shell: bash
formatting:
name: Go Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: Check formatting
run: ./.gha.gofmt.sh