From 8d6b1a807a1d33e0816b52d6c37b903045b9323f Mon Sep 17 00:00:00 2001 From: Mattijs Kneppers Date: Mon, 17 Jun 2024 09:21:32 +0200 Subject: [PATCH] Simplify ci workflow --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 222d55b..be94d77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,7 @@ name: test on: push: - pull_request: - workflow_dispatch: + pull_request_target: jobs: test: runs-on: ubuntu-latest @@ -14,6 +13,3 @@ jobs: - run: | cd maxdiff python3 tests/test.py - - run: pip install --upgrade pip wheel - - run: pip install pytest - - run: pytest maxdiff/tests/test.py