Skip to content

Commit

Permalink
Convert readme from rst to md
Browse files Browse the repository at this point in the history
  • Loading branch information
gouline committed Dec 6, 2023
1 parent 7b797ca commit 081169a
Show file tree
Hide file tree
Showing 8 changed files with 404 additions and 459 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ jobs:
- name: Lint Python check (pylint)
run: make check-lint-python

- name: Lint reStructuredText check (rst-lint)
run: make check-lint-rst

- name: Type check (mypy)
run: make check-type

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ jobs:
- name: Lint Python check (pylint)
run: make check-lint-python

- name: Lint reStructuredText check (rst-lint)
run: make check-lint-rst

- name: Type check (mypy)
run: make check-type

Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include requirements.txt
include requirements-test.txt
include LICENSE
include README.rst
include README.md
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,11 @@ check-lint-python:
pylint dbtmetabase
.PHONY: check-lint-python

check-lint-rst:
rst-lint README.rst
.PHONY: check-lint-rst

check-type:
mypy dbtmetabase
.PHONY: check-type

check: check-fmt check-lint-python check-lint-rst check-type
check: check-fmt check-lint-python check-type
.PHONY: check

test:
Expand Down
Loading

0 comments on commit 081169a

Please sign in to comment.