feat(commands): add -p/--project-name flag and docker compose projec name resolution #168
Workflow file for this run
This file contains hidden or 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: Tests | |
| on: | |
| # Manual trigger only - run via workflow_dispatch | |
| workflow_dispatch: | |
| # Required status check for PRs (but doesn't auto-run on commits) | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'Sources/**' | |
| - 'Tests/**' | |
| - 'Package.swift' | |
| - '.github/workflows/tests.yml' | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'Sources/**' | |
| - 'Tests/**' | |
| - 'Package.swift' | |
| - '.github/workflows/tests.yml' | |
| jobs: | |
| test: | |
| name: Run Swift Static Tests | |
| runs-on: macos-26 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Swift | |
| uses: swift-actions/setup-swift@v3 | |
| - name: Build | |
| run: swift build --build-tests | |
| - name: Run static tests | |
| run: swift test --filter Container_Compose_StaticTests | |
| - name: Upload static test results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results | |
| path: .build/debug/*.xctest | |
| if-no-files-found: ignore |