Move Complement back after initial tests and readd timeout

Make linting fail further checks
Remove CodeQL
This commit is contained in:
Till Faelligen 2022-03-24 11:58:10 +01:00
parent 6461af9e9a
commit a6b9e6a748
2 changed files with 3 additions and 37 deletions

View file

@ -1,34 +0,0 @@
name: "CodeQL"
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ["go"]
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

View file

@ -160,7 +160,7 @@ jobs:
initial-tests-done:
name: Initial tests passed
if: ${{ !cancelled() }} # Run this even if prior jobs were skipped
needs: [ test, build, build_windows ]
needs: [ lint, test, build, build_windows ]
runs-on: ubuntu-latest
steps:
- run: "true"
@ -239,8 +239,8 @@ jobs:
# run Complement
complement:
name: "Complement (${{ matrix.label }})"
#timeout-minutes: 20
#needs: initial-tests-done
timeout-minutes: 20
needs: initial-tests-done
runs-on: ubuntu-latest
strategy:
fail-fast: false