Merging 2389b238d44a9909212a9db1aaf1b5337208b835 into trunk-temp/pr-1… #328
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- '**' # matches every branch | |
- '!main' # excludes main | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: swift:6.0 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: .build | |
key: ${{ runner.os }}-spm-${{ hashFiles('Package.resolved', '*/Package.resolved') }} | |
restore-keys: | | |
${{ runner.os }}-spm- | |
- name: Run TESTS | |
run: swift test --use-integrated-swift-driver |