Skip to content

Commit

Permalink
make CI run without tag
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jan 10, 2024
1 parent b22a8a4 commit b764e83
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/bare_run.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@

name: Bare Run on various PHP versions

on: [pull_request, push]
on:
push:
tags:
- '*.72'
branches:
- main

jobs:
bare_run:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php_version: ['7.2', '7.3', '7.4', '8.0']
php_version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']

steps:
- uses: actions/checkout@v3
Expand All @@ -23,4 +22,11 @@ jobs:
with:
php-version: ${{ matrix.php_version }}
coverage: none
- run: php bin/monorepo-builder list --ansi

- run: mkdir nested-dir

- run: composer require symplify/phpstan-rules --dev --ansi
working-directory: nested-dir

- run: vendor/bin/ecs list --ansi
working-directory: nested-dir

0 comments on commit b764e83

Please sign in to comment.