This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run unit tests and code quality checks of runopencode/phplib | |
| on: | |
| pull_request: | |
| types: [ opened, reopened, edited, synchronize ] | |
| branches: | |
| - master | |
| - dev | |
| jobs: | |
| quality_control: | |
| name: Execute code quality checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Create .env file | |
| run: | | |
| echo "SYSTEM_TIMEZONE=UTC" >> .env | |
| - name: Setup python | |
| uses: actions/setup-python@v4 | |
| id: setup-python | |
| with: | |
| python-version: 3.12 | |
| - name: Run pipenv | |
| uses: tiagovrtr/actions-pipenv@v1 | |
| with: | |
| pipenv-version: v2023.12.1 | |
| - run: pipenv --python ${{ steps.setup-python.outputs.python-path }} | |
| - name: Run tests and code quality checks | |
| run: | | |
| pipenv install | |
| pipenv run python bin/ci.py --verbose --teardown |