Skip to content

check in h1 instead of a for compatibility with timbreuse #7

check in h1 instead of a for compatibility with timbreuse

check in h1 instead of a for compatibility with timbreuse #7

Workflow file for this run

name: CodeIgniter
on:
push:
# branches: [ "master" ]
pull_request:
# branches: [ "master" ]
release:
types: [published]
workflow_dispatch: # to run manually
permissions:
contents: read
jobs:
codeigniter-test:
environment: unit_test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md
# - name: Run test suite
# run: composer run-script test
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
database.tests.DBDriver: SQLite3
database.tests.database: database/database.sqlite
CLIENT_ID: ${{ secrets.CLIENT_ID }}
TENANT_ID: ${{ secrets.TENANT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
GRAPH_USER_SCOPES: ${{ secrets.GRAPH_USER_SCOPES }}
REDIRECT_URI: ${{ secrets.REDIRECT_URI }}
run: vendor/bin/phpunit