Skip to content

Update README.md

Update README.md #4

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test_macos:
if: |
!contains(github.event.head_commit.message, '[ci skip]') &&
!contains(github.event.head_commit.message, '[ci skip test]') &&
!contains(github.event.head_commit.message, '[ci skip test_macos]')
runs-on: macOS-13
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: Select Xcode 15.0.0
run: sudo xcode-select -s /Applications/Xcode_15.0.app
- name: Run tests
run: make test