From 14560706e4033dcf267facc343057fa5edf05d52 Mon Sep 17 00:00:00 2001 From: Luis Felipe Mileo Date: Thu, 12 Nov 2020 17:46:30 -0300 Subject: [PATCH] [NEW] Github Action Python Test --- .github/workflows/python-test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/python-test.yml diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml new file mode 100644 index 0000000..17d7edc --- /dev/null +++ b/.github/workflows/python-test.yml @@ -0,0 +1,10 @@ +name: Test +on: [pull_request] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Prepare repo + uses: actions/checkout@master + - name: Test + uses: onichandame/python-test-action@master \ No newline at end of file