mirror of
https://github.com/yeslayla/run-gut-tests-action.git
synced 2025-01-13 12:33:41 +01:00
Joseph Manley
5af87a011e
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
28 lines
564 B
YAML
28 lines
564 B
YAML
name: Test Action
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test_1:
|
|
name: "Test Action with Container"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Run Action
|
|
uses: ./
|
|
with:
|
|
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 |