From 0a7ce40ca8ea9246ea3e0d3079934102abe27fdf Mon Sep 17 00:00:00 2001 From: Andrew Hsu Date: Tue, 11 Mar 2025 21:56:39 -0500 Subject: [PATCH] gha: python.yml --- .github/workflows/python.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml new file mode 100644 index 000000000..cba632ac9 --- /dev/null +++ b/.github/workflows/python.yml @@ -0,0 +1,14 @@ +name: python +on: [push] +jobs: + tox-py312: + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + cache: 'pip' + cache-dependency-path: 'requirements-test.txt' + - run: pip install tox + - run: tox -e py312