mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 12:40:36 +00:00
checkout
This commit is contained in:
parent
20570f8a79
commit
cd8c62af7b
2 changed files with 18 additions and 2 deletions
2
.github/actions/test/action.yml
vendored
2
.github/actions/test/action.yml
vendored
|
@ -25,8 +25,6 @@ defaults:
|
|||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- shell: bash
|
||||
run: |
|
||||
cat > ${{ inputs.path}}/aftman.toml << EOF
|
||||
|
|
18
.github/workflows/CI.yml
vendored
18
.github/workflows/CI.yml
vendored
|
@ -5,6 +5,8 @@ jobs:
|
|||
test_linux_no_trust:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: ./.github/actions/test
|
||||
with:
|
||||
no-trust-check: true
|
||||
|
@ -12,6 +14,8 @@ jobs:
|
|||
test_mac_no_trust:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: ./.github/actions/test
|
||||
with:
|
||||
no-trust-check: true
|
||||
|
@ -19,6 +23,8 @@ jobs:
|
|||
test_windows_no_trust:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: ./.github/actions/test
|
||||
with:
|
||||
no-trust-check: true
|
||||
|
@ -26,6 +32,8 @@ jobs:
|
|||
test_linux_with_trust:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: ./.github/actions/test
|
||||
with:
|
||||
trusts: "Kampfkarren/selene JohnnyMorganz/stylua rojo-rbx/rojo"
|
||||
|
@ -33,6 +41,8 @@ jobs:
|
|||
test_mac_with_trust:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: ./.github/actions/test
|
||||
with:
|
||||
trusts: "Kampfkarren/selene JohnnyMorganz/stylua rojo-rbx/rojo"
|
||||
|
@ -40,6 +50,8 @@ jobs:
|
|||
test_windows_with_trust:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: ./.github/actions/test
|
||||
with:
|
||||
trusts: "Kampfkarren/selene JohnnyMorganz/stylua rojo-rbx/rojo"
|
||||
|
@ -47,6 +59,8 @@ jobs:
|
|||
test_linux_version_and_path:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- run: mkdir project
|
||||
- uses: ./.github/actions/test
|
||||
with:
|
||||
|
@ -56,6 +70,8 @@ jobs:
|
|||
test_mac_version_and_path:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- run: mkdir project
|
||||
- uses: ./.github/actions/test
|
||||
with:
|
||||
|
@ -66,6 +82,8 @@ jobs:
|
|||
test_windows_version_and_path:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- run: mkdir project
|
||||
- uses: ./.github/actions/test
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue