Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
feat: Add scan fludix plate with tecan scanner logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Bigelmayr committed Jun 27, 2022
1 parent 115a4c8 commit 69fb0fd
Show file tree
Hide file tree
Showing 12 changed files with 6,063 additions and 2,160 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/autoformat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
coverage: none
extensions: mbstring
php-version: 7.4
php-version: 8.1

- run: composer install --no-interaction --no-progress --no-suggest

Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
with:
coverage: none
extensions: mbstring
php-version: 7.4
php-version: 8.1

- run: composer install --no-interaction --no-progress --no-suggest

Expand All @@ -63,3 +63,25 @@ jobs:
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply php-cs-fixer changes

rector:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}

- uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: mbstring
php-version: 8.1

- run: composer install --no-interaction --no-progress --no-suggest

- run: vendor/bin/rector process

- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply rector changes
101 changes: 8 additions & 93 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,98 +25,11 @@ jobs:
with:
coverage: none
extensions: mbstring
php-version: 7.4
php-version: 8.1

- name: "Validate composer.json and composer.lock"
run: composer validate --strict

composer-normalize:
name: "Normalize composer.json"

runs-on: ubuntu-latest

steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}

- name: "Install PHP with extensions"
uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: mbstring
php-version: 7.4

- name: "Install locked dependencies with composer"
run: composer install --no-interaction --no-progress --no-suggest

- name: "Run localheinz/composer-normalize"
run: composer normalize

- name: "Commit fixes"
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Normalize composer.json

php-cs-fixer:
name: "Fix PHP codestyle with php-cs-fixer"

runs-on: ubuntu-latest

steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}

- name: "Install PHP with extensions"
uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: mbstring
php-version: 7.4

- name: "Install locked dependencies with composer"
run: composer install --no-interaction --no-progress --no-suggest

- name: "Run php-cs-fixer"
run: vendor/bin/php-cs-fixer fix

- name: "Commit fixes"
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply php-cs-fixer changes

rector:
name: "Apply rector"

runs-on: ubuntu-latest

steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}

- name: "Install PHP with extensions"
uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: mbstring
php-version: 7.4

- name: "Install locked dependencies with composer"
run: composer install --no-interaction --no-progress --no-suggest

- name: "Run rector"
run: vendor/bin/rector process

- name: "Commit fixes"
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply rector changes

static-code-analysis:
name: "Static Code Analysis"

Expand All @@ -131,7 +44,7 @@ jobs:
with:
coverage: none
extensions: mbstring
php-version: 7.4
php-version: 8.1

- name: "Install locked dependencies with composer"
run: composer install --no-interaction --no-progress --no-suggest
Expand All @@ -149,14 +62,16 @@ jobs:
php-version:
- 7.4
- 8.0

- 8.1
dependencies:
- lowest
- highest

illuminate:
- ^8
- ^9
exclude:
- php-version: 7.4
illuminate: ^9

steps:
- name: "Checkout"
Expand Down Expand Up @@ -201,7 +116,7 @@ jobs:
with:
coverage: pcov
extensions: mbstring
php-version: 7.4
php-version: 8.1

- name: "Install locked dependencies with composer"
run: composer install --no-interaction --no-progress --no-suggest
Expand Down Expand Up @@ -229,7 +144,7 @@ jobs:
with:
coverage: pcov
extensions: mbstring
php-version: 7.4
php-version: 8.1

- name: "Install locked dependencies with composer"
run: composer install --no-interaction --no-progress --no-suggest
Expand Down
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"require": {
"php": "^7.4 || ^8",
"illuminate/support": "^8 || ^9",
"mll-lab/microplate": "^3.5",
"mll-lab/microplate": "^3.6",
"mll-lab/php-utils": "^1.2",
"rector/rector": "^0.13.6",
"thecodingmachine/safe": "^1"
Expand All @@ -27,13 +27,15 @@
"infection/infection": "~0.25",
"jangregor/phpstan-prophecy": "^1",
"mll-lab/php-cs-fixer-config": "^4.3",
"nunomaduro/larastan": "^0.7 || ^1",
"orchestra/testbench": "^6 || ^7",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9",
"symfony/var-dumper": "^5",
"symfony/var-dumper": "^5 || ^6",
"thecodingmachine/phpstan-safe-rule": "^1.1"
},
"autoload": {
Expand All @@ -50,8 +52,10 @@
]
},
"config": {
"platform": {
"php": "7.4.24"
"allow-plugins": {
"infection/extension-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
Expand Down
Loading

0 comments on commit 69fb0fd

Please sign in to comment.