Skip to content

use correct action

use correct action #2

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- "main"
pull_request:

Check failure on line 7 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
jobs:
setup-docker:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-13, macos-15-intel, macos-15]
name: A job to perform a self-test on this Github Action
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v5
- name: Setup Docker on macOS using Colima, Lima-VM, and Homebrew.
uses: douglascamata/setup-docker-macos-action@v1
id: docker
- name: Get the Docker client version
run: |
echo "Docker client version: ${{ steps.docker.outputs.docker-client-version }}"
- name: Get the Colima version
run: |
echo "Colima version: ${{ steps.docker.outputs.colima-version }}"