diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index b4297af5..ac2ab80a 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -3,6 +3,9 @@ on: push: branches: - main + pull_request: + paths: + - '.github/workflows/main.yaml' jobs: default: runs-on: ubuntu-latest @@ -21,4 +24,3 @@ jobs: with: python-version: ${{ matrix.python-version }} - run: make - - run: make install diff --git a/Makefile b/Makefile index d24c74c0..67b57bf1 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ PYTHON := python3 default: make deps + make install make test make lint make build