Skip to content

Commit

Permalink
Add ci action
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis Fortunier committed Jan 3, 2024
1 parent c4eb689 commit a938902
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run ci

on: [ pull_request ]

jobs:
ci:
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ github.repository_owner }}/symfony-docker:php8.2
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Validate composer.json
run: composer validate
- name: Composer install
run: composer install
- name: Run coverage
run: make coverage
- name: Clear cache
run: php bin/console c:c
- name: Run qualimetry
run: make qa

0 comments on commit a938902

Please sign in to comment.