Skip to content

fix path type error in sha256 checksum #32

fix path type error in sha256 checksum

fix path type error in sha256 checksum #32

Workflow file for this run

name: Source Lexer Test
on:
push:
branches:
- master
paths:
- ".github/workflows/test_lexer.yml"
- "jvd/**"
- "test/**"
- "pyproject.toml"
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
lfs: true
submodules: recursive
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install
- name: Test lexers
run: |
poetry run pytest test/test_src.py