This repository was archived by the owner on Feb 26, 2025. It is now read-only.
fix error with invalid init, add support for using urls in build ids #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
tests: | |
name: CI Tests & Release | |
runs-on: ubuntu-latest | |
environment: CI | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
- name: Install Dependencies | |
run: | | |
composer install | |
- name: Lint | |
continue-on-error: true | |
run: | | |
composer exec pint | |
- name: Test | |
run: | | |
composer exec pest |