From c8ba5371f0e8d9c8851fa27c3ac6c8d836d442ea 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..70faffd --- /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: 10 + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: '3.11' + - run: pip3 install tox + - run: tox