-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (39 loc) · 1.08 KB
/
su-se-bakover-branch.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build branch/PR
# If you want to deploy your branch see branch-deploy.yml
on:
push:
branches:
- '*' # matches every branch that doesn't contain a '/'
- '*/*' # matches every branch containing a single '/'
- '**' # matches every branch
- '!master' # excludes master
- '!main' # excludes main (will probably replace master)
paths-ignore:
- '.github/**'
- '!.github/workflows/su-se-bakover-branch.yml'
- '!.github/actions/build-and-test/**'
- '!.github/actions/setup-java/**'
- '.idea/**'
- 'datapakker/**'
- 'local-db-scripts/**'
- 'scripts/**'
- '.editorconfig'
- '*.template'
- '.gitignore'
- 'alerts.yml'
- '*.sh'
- 'CODEOWNERS'
- 'docker-compose.yml'
- 'LICENSE'
- '*.md'
permissions: {}
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest-8-cores
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Build and test
uses: ./.github/actions/build-and-test