-
Notifications
You must be signed in to change notification settings - Fork 58
40 lines (38 loc) · 936 Bytes
/
build-and-test.yml
File metadata and controls
40 lines (38 loc) · 936 Bytes
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
name: Build the ODK images and run the tests
on:
pull_request:
branches:
- master
types:
- opened
- synchronize
paths-ignore:
- '**.md'
- 'CITATION.cff'
- 'LICENSE'
- 'docs/**'
- 'mkdocs.yml'
- 'INSTALL.sh'
- 'env.sh'
- 'odk.sh'
- 'odk2.sh'
- 'seed-via-docker-131.sh'
- '*.bat'
- 'upgrade*sh'
- '.github/workflows/build-multiarch.yml'
- '.github/workflows/docs.yml'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Create dummy Git user name
run: git config --global user.name Alice
- name: Create dummy Git user email
run: git config --global user.email alice@example.org
- name: Build the images
run: make build
- name: Run the tests
run: make test-full