From f2c3b0decf4d639cf184166910fe8cb2bde8dce3 Mon Sep 17 00:00:00 2001 From: Kirill Pinchuk Date: Mon, 5 Feb 2024 16:44:41 +0300 Subject: [PATCH] ci: github actions --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..c7de1c1 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: tests + +on: + push: + branches: + - '*' + +jobs: + run-tests: + runs-on: ubuntu-latest + timeout-minutes: 5 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - run: pip3 install tox + - run: tox