Skip to content

Install docker on macOS with another action #9

Install docker on macOS with another action

Install docker on macOS with another action #9

Workflow file for this run

name: test
on: [pull_request, push]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: Homebrew/actions/setup-homebrew@master
- if: startsWith(runner.os, 'macos')
uses: douglascamata/setup-docker-macos-action@main
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: stable
cache: true
- run: go test