We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 221bea0 + ba55db4 commit 0fcd2cfCopy full SHA for 0fcd2cf
.github/workflows/builds.yml
@@ -5,6 +5,11 @@ name: Build Exercises
5
# Perform the builds on every push and pull request.
6
on: [ push, pull_request ]
7
8
+# Cancel running jobs on force-push
9
+concurrency:
10
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
11
+ cancel-in-progress: true
12
+
13
# All the different build/test jobs.
14
jobs:
15
.github/workflows/workflow.yml
@@ -1,5 +1,8 @@
1
name: Build LaTeX document
2
on: [push,pull_request]
3
4
build_latex:
runs-on: ubuntu-latest
0 commit comments