Update README.md #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MacOS Build | |
# Controls when the action will run. | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-11, macos-12] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Remove Python 2 to 3 for Python 3.11 symlink | |
run: brew unlink [email protected] && brew link --overwrite [email protected] && brew unlink [email protected] && brew link --overwrite [email protected] | |
- name: Setup | |
run: ./setup.sh | |
- name: Build AirLib | |
run: ./build.sh |