From def242ff2f98ddf2f415c0958748c195c6938c81 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 | 14 ++++++++++++++ 1 file changed, 14 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..20f766b55 --- /dev/null +++ b/.github/workflows/test_install.yml @@ -0,0 +1,14 @@ +name: 'Python requirements - get or set in cache' +on: push + +jobs: + check_install: + name: trololol + runs-on: ubuntu-latest + 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