Add CI/CD

This commit is contained in:
Matej Bačo 2024-08-20 08:52:51 +00:00
parent 69977138da
commit 22b054453c

16
.github/workflows/bench.yml vendored Normal file
View 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"