-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (47 loc) · 1.31 KB
/
cluster.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
48
49
50
51
52
53
name: Cluster tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
julia-version: ['1.10']
julia-arch: [x64]
nats-version: ['2.10.18']
julia-num-threads: ['1']
os: [ubuntu-latest]
services:
nats-no-tls:
image: nats:${{ matrix.nats-version }}
steps:
- uses: actions/checkout@v2
- name: "Start NATS cluster."
run: |
echo $PWD
cd test/cluster
docker compose up -d
sleep 2
docker ps
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- run: |
julia --project -e 'using Pkg; Pkg.instantiate()'
JULIA_DEBUG=NATS JULIA_NUM_THREADS=${{ matrix.julia-num-threads }} julia --color=yes --code-coverage=user --project test/cluster.jl
- uses: julia-actions/julia-processcoverage@v1
# annotate: true
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: "Stop services"
run: |
echo $PWD
cd test/cluster
docker compose down