Skip to content

Commit

Permalink
fix: generate config
Browse files Browse the repository at this point in the history
  • Loading branch information
EstebanBorai committed Nov 20, 2023
1 parent d5ae8bd commit 6020d2b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,16 @@ jobs:
- name: Unit Tests
run: cargo test -p matrix

- name: Create a copy of `.env.example`
run: cp ./.env.example ./.env

- name: Generate Synapse Configuration
run: |
docker run -it --rm -v ./docker/synapse:/data --env-file .env matrixdotorg/synapse:v1.96.1 generate
- name: E2E Tests
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
Expand Down

0 comments on commit 6020d2b

Please sign in to comment.