fix: Add missing 'id' field in tax rate save response #3
Workflow file for this run
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
| name: PHP Linting | |
| on: push | |
| jobs: | |
| phplint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: PHP Lint 8.0 | |
| uses: dbfx/github-phplint/8.0@master | |
| with: | |
| folder-to-exclude: "! -path \"./vendor/*\" ! -path \"./folder/excluded/*\"" | |
| - name: PHP Lint 8.1 | |
| uses: dbfx/github-phplint/8.1@master | |
| with: | |
| folder-to-exclude: "! -path \"./vendor/*\" ! -path \"./folder/excluded/*\"" | |
| - name: PHP Lint 8.2 | |
| uses: dbfx/github-phplint/8.2@master | |
| with: | |
| folder-to-exclude: "! -path \"./vendor/*\" ! -path \"./folder/excluded/*\"" | |
| - name: PHP Lint 8.3 | |
| uses: dbfx/github-phplint/8.3@master | |
| with: | |
| folder-to-exclude: "! -path \"./vendor/*\" ! -path \"./folder/excluded/*\"" | |
| - name: PHP Lint 8.4 | |
| uses: dbfx/github-phplint/8.4@master | |
| with: | |
| folder-to-exclude: "! -path \"./vendor/*\" ! -path \"./folder/excluded/*\"" |