Skip to content

fix: Correctly set the minimum Swift version 6, same as SwiftSoup req… #7

fix: Correctly set the minimum Swift version 6, same as SwiftSoup req…

fix: Correctly set the minimum Swift version 6, same as SwiftSoup req… #7

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
test-xcode:
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v