Update to CRoaring v4.2.1 for #21 #61
Workflow file for this run
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 on Ubuntu (latest) | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
tests-linux: | |
strategy: | |
matrix: | |
swift: ["5", "6"] | |
name: SwiftPM Linux | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Setup Swift version | |
uses: swift-actions/setup-swift@v2 | |
with: | |
swift-version: ${{ matrix.swift }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: linuxmain | |
run: | | |
swift --version | |
swift build | |
swift test | |
- name: Build | |
run: swift build | |
- name: Test | |
run: swift test | |
tests-macOS: | |
strategy: | |
fail-fast: false | |
matrix: | |
swift: ["5", "6"] | |
destination: [macOS] | |
name: SwiftPM macOS | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
run: swift build | |
- name: Test | |
run: swift test | |