Skip to content

Commit

Permalink
Do CI tests on the development branch
Browse files Browse the repository at this point in the history
  • Loading branch information
norbusan authored and marcoag committed Feb 18, 2024
1 parent 1b2c28c commit 2b7ec4d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Build

on:
push:
branches: [ main ]
branches: [ development ]
paths-ignore:
- 'src/pretalx/locale/**'
- 'doc/**'
pull_request:
branches: [ main ]
branches: [ development ]
paths-ignore:
- 'src/pretalx/locale/**'
- 'doc/**'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Documentation

on:
push:
branches: [ main ]
branches: [ development ]
paths:
- 'doc/**'
pull_request:
branches: [ main ]
branches: [ development ]
paths:
- 'doc/**'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/strings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Strings

on:
push:
branches: [ main ]
branches: [ development ]
paths:
- 'src/pretalx/locale/**'
pull_request:
branches: [ main ]
branches: [ development ]
paths:
- 'src/pretalx/locale/**'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Code Style

on:
push:
branches: [ main ]
branches: [ development ]
paths-ignore:
- 'src/pretalx/locale/**'
- 'src/pretalx/static/**'
- 'doc/**'
pull_request:
branches: [ main ]
branches: [ development ]
paths-ignore:
- 'src/pretalx/locale/**'
- 'src/pretalx/static/**'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Tests

on:
push:
branches: [ main ]
branches: [ development ]
paths-ignore:
- 'doc/**'
- 'src/pretalx/locale/**'
pull_request:
branches: [ main ]
branches: [ development ]
paths-ignore:
- 'doc/**'
- 'src/pretalx/locale/**'
Expand Down Expand Up @@ -113,4 +113,4 @@ jobs:
label: coverage
message: ${{ env.TOTAL_COV }}%
color: "#3aa57c"
if: env.TOTAL_COV && github.ref == 'refs/heads/main'
if: env.TOTAL_COV && github.ref == 'refs/heads/development'

0 comments on commit 2b7ec4d

Please sign in to comment.