Skip to content

Commit

Permalink
Merge pull request #42 from fossasia/CI-tests-on-development
Browse files Browse the repository at this point in the history
Do CI tests on the development branch
  • Loading branch information
norbusan authored Feb 16, 2024
2 parents 9f7752e + d20ccdc commit ddbeee3
Show file tree
Hide file tree
Showing 6 changed files with 15 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'
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ include _build/backend.py
include LICENSE
include README.rst
include src/pretalx.example.cfg
include Dockerfile

recursive-include deployment *.bash
recursive-include deployment *.conf

exclude src/pretalx/override_settings.py
exclude src/pretalx.cfg
Expand Down

0 comments on commit ddbeee3

Please sign in to comment.