Skip to content

Commit d59bb5e

Browse files
committed
Moves from travis to Github Actions
1 parent fa81063 commit d59bb5e

11 files changed

+924
-265
lines changed

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# These are supported funding model platforms
22

33
patreon: sobolevn
4+
github: wemake-services

.github/workflows/test.yml

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version: [3.6, 3.7, 3.8]
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Set up Python ${{ matrix.python-version }}
15+
uses: actions/setup-python@v1
16+
with:
17+
python-version: ${{ matrix.python-version }}
18+
19+
- name: Install poetry
20+
run: |
21+
curl -sSL \
22+
"https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py" | python
23+
24+
- name: Set up cache
25+
uses: actions/cache@v1
26+
with:
27+
path: .venv
28+
key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
29+
- name: Install dependencies
30+
run: |
31+
source "$HOME/.poetry/env"
32+
poetry config virtualenvs.in-project true
33+
poetry install
34+
35+
- name: Run checks
36+
run: |
37+
source "$HOME/.poetry/env"
38+
39+
poetry run flake8 .
40+
poetry run mypy dotenv_linter
41+
poetry run pytest
42+
poetry run doc8 -q docs
43+
poetry run safety check --bare --full-report
44+
poetry check
45+
poetry run pip check
46+
47+
- name: Upload coverage to Codecov
48+
uses: codecov/codecov-action@v1
49+
with:
50+
file: ./coverage.xml

.readthedocs.yml

-7
This file was deleted.

.travis.yml

-33
This file was deleted.

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
We follow Semantic Versions.
44

55

6+
## Version 0.2.0 WIP
7+
8+
### Features
9+
10+
- Adds `python3.8` support
11+
12+
### Misc
13+
14+
- Updates `wemake-python-styleguide` to `0.14`
15+
- Updates `poetry` to `1.0`
16+
- Moves from travis to github actions
17+
18+
619
## Version 0.1.5
720

821
### Misc

CONTRIBUTING.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44

55
### Fork this repository
66

7-
Making changes to a fork and submitting from there usually ends up being easier for both you
8-
and us
7+
[Fork it!](https://help.github.com/en/github/getting-started-with-github/fork-a-repo)
8+
9+
Making changes to a fork and submitting from there usually ends up being easier for both you and us.
910

1011
## Step 2
1112

1213
### Install Dependencies
1314

14-
We use poetry to manage our dependencies.
15+
We use [poetry](https://github.com/python-poetry/poetry) to manage our dependencies.
1516

1617
To install them you would need to run the following command:
1718

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# dotenv-linter
22

33
[![wemake.services](https://img.shields.io/badge/%20-wemake.services-green.svg?label=%20&logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC%2FxhBQAAAAFzUkdCAK7OHOkAAAAbUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP%2F%2F%2F5TvxDIAAAAIdFJOUwAjRA8xXANAL%2Bv0SAAAADNJREFUGNNjYCAIOJjRBdBFWMkVQeGzcHAwksJnAPPZGOGAASzPzAEHEGVsLExQwE7YswCb7AFZSF3bbAAAAABJRU5ErkJggg%3D%3D)](https://wemake.services)
4-
[![Build Status](https://travis-ci.org/wemake-services/dotenv-linter.svg?branch=master)](https://travis-ci.org/wemake-services/dotenv-linter)
5-
[![Coverage](https://coveralls.io/repos/github/wemake-services/dotenv-linter/badge.svg?branch=master)](https://coveralls.io/github/wemake-services/dotenv-linter?branch=master)
6-
[![Github Action](https://github.com/wemake-services/dotenv-linter/workflows/dotenv/badge.svg)](https://github.com/wemake-services/dotenv-linter/actions)
4+
[![Build Status](https://github.com/wemake-services/dotenv-linter/workflows/dotenv/badge.svg?branch=master&event=push)](https://github.com/wemake-services/dotenv-linter/actions?query=workflow%3Atest)
5+
[![codecov](https://codecov.io/gh/wemake-services/dotenv-linter/branch/master/graph/badge.svg)](https://codecov.io/gh/wemake-services/dotenv-linter)
6+
[![Github Action](https://github.com/wemake-services/dotenv-linter/workflows/dotenv/badge.svg)](https://github.com/wemake-services/dotenv-linter/actions?query=workflow%3Adotenv)
77
[![Python Version](https://img.shields.io/pypi/pyversions/dotenv-linter.svg)](https://pypi.org/project/dotenv-linter/)
88
[![Documentation Status](https://readthedocs.org/projects/dotenv-linter/badge/?version=latest)](https://dotenv-linter.readthedocs.io/en/latest/?badge=latest)
99

dotenv_linter/checker.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# -*- coding: utf-8 -*-
22

33
import sys
4-
from enum import Enum
5-
from typing import Iterator, NoReturn, Optional, Tuple
4+
from enum import IntEnum
5+
from typing import Iterable, Iterator, NoReturn, Optional, Tuple
66

77
from typing_extensions import final
88

@@ -15,7 +15,7 @@
1515

1616

1717
@final
18-
class _ExitCodes(Enum):
18+
class _ExitCodes(IntEnum):
1919
initial = -1
2020
success = 0
2121
linting_error = 1
@@ -34,7 +34,7 @@ class _FSTChecker(object):
3434
values.ValueVisitor,
3535
)
3636

37-
def __init__(self, filenames: Tuple[str, ...]) -> None:
37+
def __init__(self, filenames: Iterable[str]) -> None:
3838
"""Creates new instance."""
3939
self._filenames = filenames
4040
self._parser = DotenvParser()
@@ -98,11 +98,11 @@ class DotenvFileChecker(object):
9898
"""
9999

100100
# TODO: create options
101-
def __init__(self, filenames: Tuple[str, ...], options=None):
101+
def __init__(self, filenames: Iterable[str], options=None) -> None:
102102
"""Creates new instance."""
103103
self._fst_checker = _FSTChecker(filenames)
104104

105-
def run(self) -> None:
105+
def run(self) -> NoReturn:
106106
"""Executes the linting process."""
107107
self._fst_checker.run()
108108
if self._fst_checker.status == _ExitCodes.initial:

0 commit comments

Comments
 (0)