Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: Test

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 20 * * *'

permissions:
contents: read
Expand Down Expand Up @@ -84,7 +92,9 @@ jobs:
run: bundle exec bake test

- name: Run benchmarks
timeout-minutes: 10
run: |
sleep 60
bundle exec ${{matrix.server}} &
bundle exec benchmark-http wait ${{matrix.endpoint}}
bundle exec benchmark-http latency ${{matrix.endpoint}}
Expand Down