Skip to content

Bump version to 1.4.5 and update CHANGELOG.md #69

Bump version to 1.4.5 and update CHANGELOG.md

Bump version to 1.4.5 and update CHANGELOG.md #69

Workflow file for this run

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