Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
on:
workflow_dispatch:
push:
branches:
- "main"
pull_request:
branches:
- main

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 }}"
Loading