mirror of
https://github.com/yeslayla/run-gut-tests-action.git
synced 2025-09-13 11:33:49 +02:00
Allow action to run locally
Update test workflows Test Action: wget quiretly Test Action: Install for user Check condition on string Cleanup and update test action Run on runner: debug Run on runner: debug Run on runner: debug Run on runner: debug Run on runner: debug Run on runner: debug Run on runner: debug Run on runner: debug Run on runner: debug Run on runner: debug
This commit is contained in:
19
.github/workflows/test_action.yml
vendored
19
.github/workflows/test_action.yml
vendored
@ -3,13 +3,26 @@ name: Test Action
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
TestAction:
|
||||
test_1:
|
||||
name: "Test Action with Container"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Run Action
|
||||
id: run_tests
|
||||
uses: ./
|
||||
with:
|
||||
directory: test_proj
|
||||
directory: test_proj
|
||||
test_2:
|
||||
name: "Test Action Locally"
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: barichello/godot-ci:latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Run Action
|
||||
uses: ./
|
||||
with:
|
||||
directory: test_proj
|
||||
useContainer: false
|
Reference in New Issue
Block a user