Skip to content

alias generator

alias generator #42

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest] # ubuntu-latest
swift: ["5.10", "6.0"]
runs-on: ${{ matrix.os }}
steps:
- uses: NeedleInAJayStack/setup-swift@4e17dcd69a660eea371d715802c219601e76f50a # swift-actions/setup-swift@v2 waiting for https://github.com/swift-actions/setup-swift/pull/684
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: Build
run: swift build --build-tests
- name: Run unit tests
run: swift test --filter "^(?!.*\bIntegrationTests\b).*"
- name: Run integration tests
run: swift test --filter IntegrationTests