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