Skip to content

Commit ddbeee3

Browse files
authored
Merge pull request #42 from fossasia/CI-tests-on-development
Do CI tests on the development branch
2 parents 9f7752e + d20ccdc commit ddbeee3

File tree

6 files changed

+15
-11
lines changed

6 files changed

+15
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: Build
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ development ]
66
paths-ignore:
77
- 'src/pretalx/locale/**'
88
- 'doc/**'
99
pull_request:
10-
branches: [ main ]
10+
branches: [ development ]
1111
paths-ignore:
1212
- 'src/pretalx/locale/**'
1313
- 'doc/**'

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: Documentation
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ development ]
66
paths:
77
- 'doc/**'
88
pull_request:
9-
branches: [ main ]
9+
branches: [ development ]
1010
paths:
1111
- 'doc/**'
1212

.github/workflows/strings.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: Strings
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ development ]
66
paths:
77
- 'src/pretalx/locale/**'
88
pull_request:
9-
branches: [ main ]
9+
branches: [ development ]
1010
paths:
1111
- 'src/pretalx/locale/**'
1212

.github/workflows/style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: Code Style
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ development ]
66
paths-ignore:
77
- 'src/pretalx/locale/**'
88
- 'src/pretalx/static/**'
99
- 'doc/**'
1010
pull_request:
11-
branches: [ main ]
11+
branches: [ development ]
1212
paths-ignore:
1313
- 'src/pretalx/locale/**'
1414
- 'src/pretalx/static/**'

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: Tests
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ development ]
66
paths-ignore:
77
- 'doc/**'
88
- 'src/pretalx/locale/**'
99
pull_request:
10-
branches: [ main ]
10+
branches: [ development ]
1111
paths-ignore:
1212
- 'doc/**'
1313
- 'src/pretalx/locale/**'
@@ -113,4 +113,4 @@ jobs:
113113
label: coverage
114114
message: ${{ env.TOTAL_COV }}%
115115
color: "#3aa57c"
116-
if: env.TOTAL_COV && github.ref == 'refs/heads/main'
116+
if: env.TOTAL_COV && github.ref == 'refs/heads/development'

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ include _build/backend.py
22
include LICENSE
33
include README.rst
44
include src/pretalx.example.cfg
5+
include Dockerfile
6+
7+
recursive-include deployment *.bash
8+
recursive-include deployment *.conf
59

610
exclude src/pretalx/override_settings.py
711
exclude src/pretalx.cfg

0 commit comments

Comments
 (0)