From d09e761ad1052adb31c38a6b8573776b34d747b9 Mon Sep 17 00:00:00 2001 From: Joaquim Nallar Date: Tue, 1 Oct 2024 11:50:42 +0200 Subject: [PATCH] test gitub action --- .github/workflows/test_install.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test_install.yml diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml new file mode 100644 index 000000000..440d9c659 --- /dev/null +++ b/.github/workflows/test_install.yml @@ -0,0 +1,17 @@ +name: Check pip install package with multiple version of python +on: [push, pull_request] + +jobs: + check-requirements-install: + runs-on: debian-latest + strategy: + matrix: + python-version: [ "3.9", "3.12" ] + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + cache: 'pip' + - run: pip install -r requirements.txt