From 148966d8b3862d68f1a39cab92fcc42c65d38e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Wed, 19 Jan 2022 08:26:44 -0300 Subject: [PATCH] ci: Add github action with pytest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- .github/WORKFLOWS/pytest.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/WORKFLOWS/pytest.yml diff --git a/.github/WORKFLOWS/pytest.yml b/.github/WORKFLOWS/pytest.yml new file mode 100644 index 0000000..277f51e --- /dev/null +++ b/.github/WORKFLOWS/pytest.yml @@ -0,0 +1,15 @@ +name: Test + +on: [push, pull_request] + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + include: + - os: ubuntu-latest + + steps: + - name: Run pytest + uses: cclauss/GitHub-Action-for-pytest@0.5.0 \ No newline at end of file