From 2ab2233c626ad2e677d35d485a66d8ae49e7e8cc Mon Sep 17 00:00:00 2001 From: Louis Mandel Date: Wed, 28 Aug 2024 16:45:48 -0400 Subject: [PATCH] Setup github actions --- .github/workflows/build.yml | 42 +++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..09ec3f25 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,42 @@ +--- +name: Build + +on: [push, pull_request] + +jobs: + tests: + name: static checks / linters + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ['3.12'] + + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + - name: Cache pip + uses: actions/cache@v4 + with: + # This path is specific to Ubuntu + path: ${{ env.pythonLocation }} + # Look to see if there is a cache hit for the setup file + key: ${{ runner.os }}-pip-new3-${{ env.pythonLocation }}-${{ hashFiles('setup.py') }} + restore-keys: | + ${{ runner.os }}-pip-new3 + ${{ runner.os }}-new3 + - name: Install dependencies + run: pip install --upgrade --upgrade-strategy eager .[all] + - name: pip list packages + run: pip list + - name: show pip dependencies + run: | + pip install pipdeptree + pipdeptree -fl + - name: pre-commit checks + run: pre-commit run -a + - name: run tests + run: py.test -v --capture=tee-sys tests