mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-28 03:00:24 +00:00
fixed indent
This commit is contained in:
parent
eef8fdb63b
commit
f0386efaf6
1 changed files with 19 additions and 19 deletions
38
.github/workflows/test.yml
vendored
38
.github/workflows/test.yml
vendored
|
|
@ -2,26 +2,26 @@ name: test
|
|||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
test:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
python-version: [3.6, 3.7, 3.8, 3.9]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: setup python ${{ matrix.python-version }} on ${{ matrix.os }}
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: install deps
|
||||
run: python -m pip install tox
|
||||
- name: test
|
||||
run: tox -p
|
||||
- name: upload cov
|
||||
uses: codecov/codecov-action@v1
|
||||
with:
|
||||
files: ./coverage.xml
|
||||
fail_ci_if_error: true
|
||||
verbose: true
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: setup python ${{ matrix.python-version }} on ${{ matrix.os }}
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: install deps
|
||||
run: python -m pip install tox
|
||||
- name: test
|
||||
run: tox -p
|
||||
- name: upload cov
|
||||
uses: codecov/codecov-action@v1
|
||||
with:
|
||||
files: ./coverage.xml
|
||||
fail_ci_if_error: true
|
||||
verbose: true
|
||||
|
|
|
|||
Loading…
Reference in a new issue