Skip to content

Commit

Permalink
Added macOS workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfpf committed Sep 22, 2023
1 parent 2e28bf8 commit c8657aa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/functest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@ name: functest

on: [push, workflow_dispatch]

defaults:
run:
shell: bash

jobs:
functest:
name: Functional Test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, ubuntu-22.04]
steps:
- uses: actions/checkout@v4
- run: ./install.sh
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ On Windows, these are available natively via [MSYS2](https://www.msys2.org) and
[WSL](https://learn.microsoft.com/en-us/windows/wsl/about). On macOS, they can be installed using
[Homebrew](https://brew.sh/); however, their Apple-specific variants provided by
[Xcode](https://apps.apple.com/app/xcode/id497799835) should also be fine. I am fairly sure that this will work on
macOS, though I don't have a Mac to test it.
macOS, though I don't have a Mac to test it. (I'm trying to figure out how to use a macOS runner on GitHub Actions.)

The installation commands mentioned below must be entered in
* the terminal if you are on Linux/macOS, or
Expand Down

0 comments on commit c8657aa

Please sign in to comment.