From f8ccb293666e6b25451d81b45dea0801e8bdfe10 Mon Sep 17 00:00:00 2001 From: Bruno Meilick Date: Sun, 16 May 2021 16:14:53 +0100 Subject: [PATCH] Delete .github/actions directory --- .github/actions/test.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/actions/test.yml diff --git a/.github/actions/test.yml b/.github/actions/test.yml deleted file mode 100644 index a2a4317..0000000 --- a/.github/actions/test.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Unit Tests - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - schedule: - - cron: '0 2 * * *' # run at 2 AM UTC - -jobs: - test: - runs-on: ubuntu-latest - name: Tests - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: '7.3' - tools: composer - - - name: Install - run: composer install - - # update kirby to latest release of version 3 (includes release candidates!) - # https://semver.mwl.be/#!?package=getkirby%2Fcms&version=3.*&minimum-stability=RC - - name: Update Kirby Core - run: composer require getkirby/cms:"3.*@RC" - - - name: Run Tests - run: composer test