Skip to content

Bump github.com/apple/swift-algorithms from 1.0.0 to 1.2.0 #7

Bump github.com/apple/swift-algorithms from 1.0.0 to 1.2.0

Bump github.com/apple/swift-algorithms from 1.0.0 to 1.2.0 #7

Workflow file for this run

name: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Swift ${{ matrix.swift-version }} on ${{ matrix.os }}
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest"]
swift-version: ["5"]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@v1
with:
swift-version: ${{ matrix.swift-version }}
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Run tests
run: swift test