-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: update yml indentation based on vs code default formatter
- Loading branch information
1 parent
016ef78
commit f024e9b
Showing
4 changed files
with
46 additions
and
46 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,11 +23,11 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.10' | ||
python-version: "3.10" | ||
architecture: x64 | ||
- uses: abatilo/[email protected] | ||
with: | ||
poetry-version: '1.1.13' | ||
poetry-version: "1.1.13" | ||
- run: poetry build | ||
- run: poetry publish | ||
env: | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,41 +10,41 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
python-version: ['3.10', '3.9', '3.8', '3.7'] | ||
extras: ['', all, soap_api, orjson, cli] | ||
python-version: ["3.10", "3.9", "3.8", "3.7"] | ||
extras: ["", all, soap_api, orjson, cli] | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
with: | ||
python-version: '${{ matrix.python-version }}' | ||
architecture: x64 | ||
- uses: abatilo/[email protected] | ||
with: | ||
poetry-version: '1.1.13' | ||
- run: poetry install --extras ${{ matrix.extras }} | ||
if: matrix.extras != '' | ||
- run: poetry install | ||
if: matrix.extras == '' | ||
- run: poetry run pytest -v | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
with: | ||
python-version: "${{ matrix.python-version }}" | ||
architecture: x64 | ||
- uses: abatilo/[email protected] | ||
with: | ||
poetry-version: "1.1.13" | ||
- run: poetry install --extras ${{ matrix.extras }} | ||
if: matrix.extras != '' | ||
- run: poetry install | ||
if: matrix.extras == '' | ||
- run: poetry run pytest -v | ||
|
||
style: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ['3.10'] | ||
python-version: ["3.10"] | ||
extras: [all] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
with: | ||
python-version: '${{ matrix.python-version }}' | ||
architecture: x64 | ||
- uses: abatilo/[email protected] | ||
with: | ||
poetry-version: '1.1.13' | ||
- run: poetry install --extras ${{ matrix.extras }} | ||
- run: poetry run flake8 | ||
- run: poetry run mypy --ignore-missing-imports . | ||
- run: poetry run isort --check --diff . | ||
- run: poetry run black --check --diff . | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
with: | ||
python-version: "${{ matrix.python-version }}" | ||
architecture: x64 | ||
- uses: abatilo/[email protected] | ||
with: | ||
poetry-version: "1.1.13" | ||
- run: poetry install --extras ${{ matrix.extras }} | ||
- run: poetry run flake8 | ||
- run: poetry run mypy --ignore-missing-imports . | ||
- run: poetry run isort --check --diff . | ||
- run: poetry run black --check --diff . |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,16 +9,16 @@ jobs: | |
code_coverage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.10' | ||
architecture: x64 | ||
- uses: abatilo/[email protected] | ||
with: | ||
poetry-version: '1.1.13' | ||
- run: poetry install --extras all | ||
- run: poetry run pytest --cov=netsuite --cov-report=xml --cov-report=term | ||
- uses: codecov/codecov-action@v3 | ||
with: | ||
files: ./coverage.xml | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.10" | ||
architecture: x64 | ||
- uses: abatilo/[email protected] | ||
with: | ||
poetry-version: "1.1.13" | ||
- run: poetry install --extras all | ||
- run: poetry run pytest --cov=netsuite --cov-report=xml --cov-report=term | ||
- uses: codecov/codecov-action@v3 | ||
with: | ||
files: ./coverage.xml |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,11 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.9' | ||
python-version: "3.9" | ||
architecture: x64 | ||
- uses: abatilo/[email protected] | ||
with: | ||
poetry-version: '1.1.13' | ||
poetry-version: "1.1.13" | ||
- run: poetry install --extras all | ||
- run: poetry run mkdocs build | ||
- uses: peaceiris/[email protected] | ||
|