Skip to content

chore: bump actions/setup-go from 5.0.0 to 5.0.1 #201

chore: bump actions/setup-go from 5.0.0 to 5.0.1

chore: bump actions/setup-go from 5.0.0 to 5.0.1 #201

Workflow file for this run

name: Test
on:
pull_request:
types:
- opened
- closed
- reopened
workflow_dispatch:
inputs: {}
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
# - ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{matrix.os}}
steps:
- name: Pull Source Code
uses: actions/checkout@v4.1.4
- name: Install Linux-only Dependencies
if: matrix.os == 'ubuntu-latest'
run: |
# sudo apt install -y ubuntu-desktop-minimal
# sudo systemctl isolate graphical
# sudo systemctl start gdm3
- name: Set-up Go
uses: actions/setup-go@v5.0.1
with:
go-version: stable
- name: Test
run: make test