-
Notifications
You must be signed in to change notification settings - Fork 10
29 lines (28 loc) · 860 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
on:
workflow_dispatch:
push:
branches:
- "main"
pull_request:
jobs:
setup-docker:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-13]
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@v4
- name: Setup Docker on macOS using Colima, Lima-VM, and Homebrew.
uses: ./ # Uses an action in the root directory
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 }}"