From b81a3c7cb4fb15295262e4e6a2896e5bc88c51de Mon Sep 17 00:00:00 2001 From: Martin Bielik Date: Mon, 16 Dec 2024 20:15:25 +0100 Subject: added ci pipeline --- .github/workflows/tests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/tests.yml (limited to '.github/workflows') diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..9fa10c9 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,17 @@ +name: Tests +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.x' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pytest + - name: Run tests + run: pytest -- cgit v1.2.3