From 579916390d994fbd6887dc89a4a34023b80fffe9 Mon Sep 17 00:00:00 2001 From: giovannimin <105241670+giovannimin@users.noreply.github.com> Date: Fri, 29 Mar 2024 19:24:10 +0100 Subject: [PATCH] init git actions --- .github/workflows/test.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..09d91d8 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,29 @@ +#name: Run test +# +#on: +# push: +# branches: +# - main +# +#jobs: +# test: +# runs-on: ubuntu-latest +# +# steps: +# - name: Checkout latest code version from git +# uses: actions/checkout@v2 +# with: +# path: ./ +# +# - name: Set up Python environment +# uses: actions/setup-python@v2 +# with: +# python-version: 3.9 +# +# - name: Install dependencies from requirements.txt +# run: pip install -r requirements.txt +# +# - name: Run all tests +# run: pytest ./tests/ +# +