mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-10 00:50:58 +00:00
updated workflows
This commit is contained in:
parent
026e2b04e0
commit
0b3dfd68ef
4 changed files with 17 additions and 3 deletions
2
.github/workflows/docs.yml
vendored
2
.github/workflows/docs.yml
vendored
|
|
@ -1,4 +1,4 @@
|
|||
name: Docs
|
||||
name: docs
|
||||
|
||||
on:
|
||||
release:
|
||||
|
|
|
|||
14
.github/workflows/lint.yml
vendored
Normal file
14
.github/workflows/lint.yml
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
name: lint
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: build docs
|
||||
run: |
|
||||
pip install tox
|
||||
tox -e lint
|
||||
2
.github/workflows/python-publish.yml
vendored
2
.github/workflows/python-publish.yml
vendored
|
|
@ -6,7 +6,7 @@
|
|||
# separate terms of service, privacy policy, and support
|
||||
# documentation.
|
||||
|
||||
name: Upload Python Package
|
||||
name: deploy to pypi
|
||||
|
||||
on:
|
||||
release:
|
||||
|
|
|
|||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -1,5 +1,5 @@
|
|||
name: test
|
||||
on: [push]
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
|
|
|||
Loading…
Reference in a new issue