Skip to content

Bump github.com/apple/swift-collections from 1.1.3 to 1.1.4 #34

Bump github.com/apple/swift-collections from 1.1.3 to 1.1.4

Bump github.com/apple/swift-collections from 1.1.3 to 1.1.4 #34

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Run Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
unit-tests:
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set Xcode Version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build
run: swift build
- name: Test
run: swift test --filter PocketBaseTests