From dd8fb2fac4c6c4d1b40c5c31d394c2204b4d3495 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sat, 22 Jul 2023 10:31:45 -0500 Subject: [PATCH] Fix tests to always test the commit that was just pushed --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5902d8..4df8235 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -181,21 +181,21 @@ jobs: cp -a test-project/* . rm -fr test-project - name: Run both commands - uses: "houseabsolute/actions-rust-cross@v0" + uses: ./ with: command: both target: ${{ matrix.platform.target }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} if: ${{ matrix.platform.can_test }} - name: Run test command - uses: "houseabsolute/actions-rust-cross@v0" + uses: ./ with: command: test target: ${{ matrix.platform.target }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} if: ${{ matrix.platform.can_test }} - name: Run build command - uses: "houseabsolute/actions-rust-cross@v0" + uses: ./ with: command: build target: ${{ matrix.platform.target }}