Update README.md (#19) #68
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: Swift macOS build | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-macos: | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-13] | |
swift: ["5.7", "5.8"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: fwal/[email protected] | |
with: | |
swift-version: ${{ matrix.swift }} | |
- name: Homebrew Mac | |
if: ${{ runner.os == 'Macos' }} | |
run: | | |
echo "/opt/homebrew/bin:/usr/local/bin" >> $GITHUB_PATH | |
echo BENCHMARK_DISABLE_JEMALLOC=true >> $GITHUB_ENV | |
brew install jemalloc | |
- uses: actions/checkout@v3 | |
- name: Swift version | |
run: swift --version | |
- name: Build | |
run: swift build | |
- name: Run tests | |
run: | | |
if [ -d Tests ]; then | |
swift test --parallel | |
fi | |
- name: Run tests (release) | |
run: | | |
if [ -d Tests ]; then | |
swift test -c release --parallel | |
fi |