mirror of
https://github.com/yeslayla/run-gut-tests-action.git
synced 2025-02-24 04:25:09 +01:00
15 lines
254 B
YAML
15 lines
254 B
YAML
|
name: Test Action
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
TestAction:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Run Action
|
||
|
id: run_tests
|
||
|
uses: ./
|
||
|
with:
|
||
|
directory: test_proj
|