Skip to content

Commit 4f33b35

Browse files
authored
ci: force color for nox, allow only one runs per commit/PR (#77)
ci: force color for nox, allow only one runs per commit/PR
1 parent f22252f commit 4f33b35

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Release
22
on:
33
release:
44
types: [published]
5+
6+
env:
7+
FORCE_COLOR: "1"
8+
59
jobs:
610
release:
711
runs-on: ubuntu-latest

.github/workflows/tests.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
name: Tests
22
on: [push, pull_request]
3+
4+
env:
5+
FORCE_COLOR: "1"
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
9+
cancel-in-progress: true
10+
311
jobs:
412
tests:
513
timeout-minutes: 15

0 commit comments

Comments
 (0)