Bump version to 1.4.5 and update CHANGELOG.md #69
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: Swift Tests | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| paths-ignore: | |
| - 'BlueConnect.podspec' | |
| - 'Banner.png' | |
| - 'README.md' | |
| - 'CHANGELOG.md' | |
| - 'LICENSE' | |
| - 'swift-generate-documentation.sh' | |
| - 'docs/**' | |
| - '.periphery.yml' | |
| - '.spy.yml' | |
| - '.swiftlint.yml' | |
| - '.gitignore' | |
| pull_request: | |
| branches: | |
| - '*' | |
| types: [opened, reopened] | |
| workflow_dispatch: | |
| jobs: | |
| tests: | |
| name: Swift ${{ matrix.swift }} on ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-latest] | |
| swift: ["5.9", "5.10", "6.0", "6.1"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Setup swift version ${{ matrix.swift }} | |
| uses: swift-actions/setup-swift@v2 | |
| with: | |
| swift-version: ${{ matrix.swift }} | |
| - name: Check swift version | |
| run: swift --version | |
| - name: Repository checkout | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| run: swift build | |
| - name: Run tests | |
| run: swift test |