-
-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (31 loc) · 904 Bytes
/
ci.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
name: CI
on: [ pull_request ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
include:
- os: ubuntu-latest
- os: macOS-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Set up Homebrew
if: matrix.os == 'ubuntu-latest'
uses: Homebrew/actions/setup-homebrew@master
- run: brew --version
- run: brew install --verbose --formula --build-from-source ./martin.rb
- run: martin --version
- run: martin-cp --version
- run: mbtiles --version
# This final step is needed to mark the whole workflow as successful
# Don't change its name - it is used by the merge protection rules
done:
name: CI Finished
runs-on: ubuntu-latest
needs: [ test ]
steps:
- name: Finished
run: echo "CI finished successfully"