mirror of
https://github.com/anthonyaxenov/atol-online.git
synced 2024-11-22 16:14:34 +00:00
Github Actions разграничены для веток master и dev
This commit is contained in:
parent
bd6e208216
commit
1c76608468
25
.github/workflows/dev.yml
vendored
Normal file
25
.github/workflows/dev.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
name: Dev build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ dev ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ dev ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Tests:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Validate composer.json and composer.lock
|
||||||
|
uses: php-actions/composer@40-env
|
||||||
|
with:
|
||||||
|
version: 2
|
||||||
|
php_version: 7.4
|
||||||
|
only_args: --prefer-dist --no-progress
|
||||||
|
|
||||||
|
- name: Run phpunit tests
|
||||||
|
uses: php-actions/phpunit@v8
|
||||||
|
with:
|
||||||
|
configuration: ./phpunit.xml
|
25
.github/workflows/master.yml
vendored
Normal file
25
.github/workflows/master.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
name: Master build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Tests:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Validate composer.json and composer.lock
|
||||||
|
uses: php-actions/composer@40-env
|
||||||
|
with:
|
||||||
|
version: 2
|
||||||
|
php_version: 7.4
|
||||||
|
only_args: --prefer-dist --no-progress
|
||||||
|
|
||||||
|
- name: Run phpunit tests
|
||||||
|
uses: php-actions/phpunit@v8
|
||||||
|
with:
|
||||||
|
configuration: ./phpunit.xml
|
26
.github/workflows/tests.yml
vendored
26
.github/workflows/tests.yml
vendored
@ -1,26 +0,0 @@
|
|||||||
name: Build
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
|
|
||||||
- name: Validate composer.json and composer.lock
|
|
||||||
run: composer validate
|
|
||||||
|
|
||||||
- name: Install composer dependencies
|
|
||||||
run: composer install --prefer-dist --no-progress --no-suggest
|
|
||||||
|
|
||||||
- name: Run phpunit tests
|
|
||||||
uses: php-actions/phpunit@v1.0.0
|
|
||||||
with:
|
|
||||||
# Configuration file location
|
|
||||||
config: ./phpunit.xml
|
|
4
composer.lock
generated
4
composer.lock
generated
@ -4,7 +4,7 @@
|
|||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "20b642fe60192cf1e67c9aa8dca27440",
|
"content-hash": "5e1b55b0c481ba8d05be29bf5310f5ef",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "guzzlehttp/guzzle",
|
"name": "guzzlehttp/guzzle",
|
||||||
@ -2526,7 +2526,7 @@
|
|||||||
"prefer-stable": false,
|
"prefer-stable": false,
|
||||||
"prefer-lowest": false,
|
"prefer-lowest": false,
|
||||||
"platform": {
|
"platform": {
|
||||||
"php": ">=7.2",
|
"php": ">=7.4",
|
||||||
"ext-json": "*"
|
"ext-json": "*"
|
||||||
},
|
},
|
||||||
"platform-dev": [],
|
"platform-dev": [],
|
||||||
|
Loading…
Reference in New Issue
Block a user