From de789e1b54e5ef6ecdbea98818e114f0069de2aa Mon Sep 17 00:00:00 2001 From: ok-nick <25470747+ok-nick@users.noreply.github.com> Date: Sun, 17 Jul 2022 23:53:19 -0400 Subject: [PATCH] checkout and fix path --- .github/workflows/CI.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b23f0b4..91476ed 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -5,33 +5,39 @@ jobs: test_linux: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 + - name: Setup environment uses: ./.github/actions/env - name: Run setup-aftman - uses: ok-nick/setup-aftman@main + uses: ./ with: token: ${{ secrets.GITHUB_TOKEN }} test_mac: runs-on: macos-latest steps: + - uses: actions/checkout@v3 + - name: Setup environment uses: ./.github/actions/env - name: Run setup-aftman - uses: ok-nick/setup-aftman@main + uses: ./ with: token: ${{ secrets.GITHUB_TOKEN }} test_windows: runs-on: windows-latest steps: + - uses: actions/checkout@v3 + - name: Setup environment uses: ./.github/actions/env - name: Run setup-aftman - uses: ok-nick/setup-aftman@main + uses: ./ with: token: ${{ secrets.GITHUB_TOKEN }}