From 54dc87dac988c3e9baf195a5217b85bc09d2b311 Mon Sep 17 00:00:00 2001 From: Marko Viitanen Date: Thu, 17 Jun 2021 09:55:57 +0300 Subject: [PATCH] Remove duplicate test in pull_request.yml --- .github/workflows/pull_request.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index d1308a6b..981df6bf 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -5,21 +5,6 @@ on: types: [labeled] jobs: - basic-test: - runs-on: self-hosted - - if: contains(github.event.pull_request.labels.*.name, 'safe to test') - steps: - - uses: actions/checkout@v2 - with: - ref: ${{github.event.pull_request.head.ref}} - repository: ${{github.event.pull_request.head.repo.full_name}} - - name: configure - run: ./autogen.sh && ./configure --enable-werror || (cat config.log && false) - - name: make - run: make -j - - name: Run tests - run: export PATH="/home/docker/bin:${PATH}" && make check -j VERBOSE=1 basic-test: runs-on: self-hosted