-
Notifications
You must be signed in to change notification settings - Fork 3
55 lines (46 loc) · 1.2 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches: [main]
paths:
- "**"
- "!/*.md"
- "!/**.md"
concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Setup Rust Cache
uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --check
- name: Check clippy
run: cargo clippy --workspace -- -D warnings
- name: Unit Tests
run: cargo test -p matrix
- name: E2E Tests
env:
COMMUNE_SYNAPSE_HOST: 'http://localhost:8008'
run: |
cp -R ./crates/test/fixtures/synapse ./docker/synapse
cp ./.env.example ./.env
docker compose up -d
sleep 10
cargo test -p test -- --test-threads=1
sleep 10
docker compose down
docker ps