Skip to content

feat: add an option for force an attendance log outside the session p… #41

feat: add an option for force an attendance log outside the session p…

feat: add an option for force an attendance log outside the session p… #41

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
concurrency:
group: ci-tests-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
environment-file: conda/dev.yaml
channels: conda-forge,nodefaults
activate-environment: rinchen
use-mamba: true
miniforge-variant: Mambaforge
- name: Setup PHP Extensions
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: mbstring
- 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: makim dev.tests
- name: linter
run: pre-commit run --all-files