Browse Source

fix github action syntax error

tags/0.10.0
itismadness 3 years ago
parent
commit
151471e9a8
1 changed files with 14 additions and 14 deletions
  1. +14
    -14
      .github/workflows/ci.yml

+ 14
- 14
.github/workflows/ci.yml View File

@@ -9,25 +9,25 @@ jobs:
matrix: matrix:
php-version: ['7.2', '7.4'] php-version: ['7.2', '7.4']


steps:
- uses: actions/checkout@v2
steps:
- uses: actions/checkout@v2


- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: pcov
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: pcov




- name: Composer install
run: composer install
- name: Composer install
run: composer install


- run: pip3 install cchardet xld_logchecker eac_logchecker
- run: pip3 install cchardet xld_logchecker eac_logchecker


- run: composer run lint
- run: composer run lint


- run: compose run static-analysis
- run: compose run static-analysis


- run: composer run test
- run: composer run test


- run: bin/logchecker --version
- run: bin/logchecker --version

Loading…
Cancel
Save