Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "SmartCache",
"image": "mcr.microsoft.com/devcontainers/php:8.4"
}
18 changes: 18 additions & 0 deletions .ona/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
tasks:
installDeps:
name: Install dependencies
description: Install the locked Composer dependencies for the project.
command: composer install --no-interaction --prefer-dist
triggeredBy:
- manual
- postDevcontainerStart
- prebuild

test:
name: Run tests
description: Run the PHPUnit test suite through the Composer script.
command: composer test
triggeredBy:
- manual
dependsOn:
- installDeps
Loading