From da9dfeaaee8546af87bdc9bc2c225cf8ac481c9d Mon Sep 17 00:00:00 2001 From: Axel Hecht Date: Thu, 14 May 2020 11:09:58 +0200 Subject: [PATCH] Use gh actions for linting --- .github/workflows/lint.yml | 44 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..684eeba2 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,44 @@ +name: lint + +on: + # Trigger the workflow on push or pull request, + # but only for the master branch + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + syntax: + name: flake8 syntax + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.7 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 + - name: lint + run: | + flake8 fluent-syntax/fluent + + runtime: + name: flake8 runtime + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.7 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 + - name: lint + run: | + flake8 fluent-runtime/fluent