From 250781fca453bbddd86e654049514a9c7e24d0d3 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 | 13 +++++++++++++ 1 file changed, 13 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..aabd3694e --- /dev/null +++ b/.github/workflows/test_install.yml @@ -0,0 +1,13 @@ +name: 'Python requirements - get or set in cache' +on: push + +jobs: + runs-on: ubuntu-latest + test: + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + cache: 'pip' # caching pip dependencies + - run: pip install -r requirements.txt \ No newline at end of file