-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (39 loc) · 1.3 KB
/
Tests.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
42
43
44
45
46
47
name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
linux:
runs-on: ubuntu-24.04
name: Linux
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up mock deployments
run: |
docker compose -f .github/mongonet/docker-compose.yml up -d
- name: Initialize replica set
run: |
timeout 60s bash -c \
'until docker exec -t mongonet-mongo-0-1 /bin/mongosh --file /create-replica-set.js; do sleep 1; done'
- name: Run pipeline
run: |
docker run -t --rm --network=mongonet \
--name mongonet-environment \
--user root \
-v $PWD:/swift-mongodb \
-w /swift-mongodb \
swift:6.0-noble \
/bin/bash Scripts/TestAll
macos:
runs-on: macos-15
name: macOS
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build debug
run: |
swift --version
swift build