diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ff9d13110..7290be206 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,14 +17,13 @@ jobs: matrix: # TODO: someone with more windows chops please add windows test support # os: [windows-latest, ubuntu-latest, macos-latest] - # TODO: figure out how to install docker in a mac runner :facepalm: - # os: [ubuntu-latest, macos-latest] - os: [ubuntu-latest] + # TODO: keep an eye when macos-14+ (M1) support is available + os: [ubuntu-latest, macos-13] steps: - name: Checkout code uses: actions/checkout@v4 - - name: Set make and secrets for Windows + - name: Setup make and secrets for Windows if: matrix.os == 'windows-latest' run: | choco install mingw -y @@ -32,6 +31,10 @@ jobs: cp sample.env .env <-- do not know what windows cp. COPY? C:\Program Files\Git\bin\bash.exe ./build/scripts/check-secrets.sh yes + - name: Setup docker for mac + if: matrix.os == 'macos-13' + uses: douglascamata/setup-docker-macos-action@v1-alpha + - name: init secrets if: matrix.os != 'windows-latest' run: |-