Skip to content

feat: update swift version #4

feat: update swift version

feat: update swift version #4

Workflow file for this run

name: Swift
on:
push:
branches:
- Develope
pull_request:
branches:
- Develope
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["6.0", "5.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/[email protected]
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: Build
run: swift build --package-path SwiftErrorArchiver/
- name: Run tests
run: swift test --package-path SwiftErrorArchiver/