mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 08:28:42 +00:00
Add CI/CD
This commit is contained in:
parent
69977138da
commit
22b054453c
1 changed files with 16 additions and 0 deletions
16
.github/workflows/bench.yml
vendored
Normal file
16
.github/workflows/bench.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
name: "Benchmarks"
|
||||
|
||||
on: [pull_request]
|
||||
jobs:
|
||||
lint:
|
||||
name: Benchmarks
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Run Linter
|
||||
run: |
|
||||
docker run --rm -v $PWD:/app composer sh -c \
|
||||
"composer install --profile --ignore-platform-reqs && git config --global --add safe.directory /app && composer bench -- --progress=plain"
|
||||
Loading…
Reference in a new issue