Skip to content

Commit

Permalink
Limit execution time and concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
phavekes authored Mar 22, 2024
1 parent 1de48e0 commit e5eb94d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
Server_tests:
name: Server tests

timeout-minutes: 15
runs-on: ubuntu-latest

# Test different python versions
Expand Down Expand Up @@ -79,7 +83,7 @@ jobs:

Client_build:
name: Client build

timeout-minutes: 15
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit e5eb94d

Please sign in to comment.