Merge pull request #180 from CosmoQuestX/dependabot/github_actions/ac… #111
This file contains 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-tests" | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
build: | |
name: "PHP" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Build environment" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.2" | |
- name: "Check syntax" | |
run: | | |
find csb -name '*.php' -exec php -l {} \; | |
- name: "Tests" | |
run: | | |
./run_tests.sh | |
# auto-merge: | |
# needs: run-tests | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check out repo | |
# uses: actions/checkout@v4 | |
# - name: auto-merge | |
# if: | | |
# github.actor == 'dependabot[bot]' && | |
# github.event_name == 'pull_request' | |
# run: | | |
# ./merge_dependabot.sh | |
# env: | |
# PR_URL: ${{github.event.pull_request.html_url}} | |
# # this secret needs to be in the settings.secrets.dependabot | |
# GITHUB_TOKEN: ${{secrets.GH_ACTION_TOKEN}} | |
# |