OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
znew1aws-ses
/
vendor
/
wildbit
/
postmark-php
/
.circleci
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/16/2024 08:30:27 AM
rwxr-xr-x
📄
config.yml
1.02 KB
08/16/2024 08:28:22 AM
rw-r--r--
Editing: config.yml
Close
# In order for builds to pass, in CircleCI you must add all required environment variables, described in `testing_keys.json.example` version: 2.1 workflows: php-tests: jobs: - unit-tests: name: php80 version: "8.0" - unit-tests: name: php81 version: "8.1" requires: - php80 - unit-tests: name: php82 version: "8.2" requires: - php81 jobs: unit-tests: parameters: version: description: "PHP version tag" type: string docker: - image: cimg/php:<< parameters.version >> steps: - checkout - run: name: Version command: | echo "PHP: $(php --version)" - run: name: Install dependencies command: | sudo composer self-update sudo composer install --no-interaction - run: name: Run tests command: composer test