docs: add info on flashing the Microbit v2 #481
This file contains hidden or 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 | |
on: | |
pull_request: | |
push: | |
branches: | |
- dev | |
- release | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
macos-13: | |
name: macos-13 | |
runs-on: macos-13 | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run unit tests | |
run: go test | |
- name: "Run macOS smoke tests" | |
run: make smoketest-macos | |
macos-14: | |
name: macos-14 | |
runs-on: macos-14 | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run unit tests | |
run: go test | |
- name: "Run macOS smoke tests" | |
run: make smoketest-macos |