This commit is contained in:
parent
10f7c90819
commit
f19f01ab28
1 changed files with 23 additions and 0 deletions
23
.gitea/workflows/quality.yml
Normal file
23
.gitea/workflows/quality.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: "Quality Check"
|
||||
|
||||
on: push
|
||||
jobs:
|
||||
quality-controll:
|
||||
name: "Check"
|
||||
runs-on: "ubuntu-latest"
|
||||
container:
|
||||
image: "ghcr.io/catthehacker/ubuntu:act-22.04"
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "https://git.euph.dev/actions/checkout@v3"
|
||||
- name: Docker Version
|
||||
run: docker version
|
||||
- name: Setup PHP
|
||||
uses: "https://git.euph.dev/actions/setup-php@v2"
|
||||
with:
|
||||
php-version: '8.2'
|
||||
- name: Check Requirements
|
||||
run: |
|
||||
ls
|
||||
cd app
|
||||
make check
|
Loading…
Reference in a new issue