diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 0d7c036..db4c949 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -15,29 +15,32 @@ jobs: container: image: swift:${{ matrix.swift }} steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Test - run: swift test -v --skip-update --parallel --enable-test-discovery - - - name: Debug Linux folders - if: always() + - name: Swift Test Help run: | - ls -la - ls -la .build/debug/**/* + swift test --help + # - name: Checkout + # uses: actions/checkout@v4 - - name: Upload test artifacts - if: failure() - uses: actions/upload-artifact@v4.4.2 - with: - name: test-artifacts-${{ matrix.swift }}-${{ github.run_id }} - path: | - .build/*.yaml - .build/*.json - .build/**/*.json - .build/**/*.xctest - .build/**/*.txt + # - name: Test + # run: swift test -v --skip-update --parallel --enable-test-discovery + + # - name: Debug Linux folders + # if: always() + # run: | + # ls -la + # ls -la .build/debug/**/* + + # - name: Upload test artifacts + # if: failure() + # uses: actions/upload-artifact@v4.4.2 + # with: + # name: test-artifacts-${{ matrix.swift }}-${{ github.run_id }} + # path: | + # .build/*.yaml + # .build/*.json + # .build/**/*.json + # .build/**/*.xctest + # .build/**/*.txt - - name: Build Release - run: swift build -c release + # - name: Build Release + # run: swift build -c release