Skip to content

fix: added parsing from Standard Notes plaintext backup folder, misc … #56

fix: added parsing from Standard Notes plaintext backup folder, misc …

fix: added parsing from Standard Notes plaintext backup folder, misc … #56

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install poetry
poetry install
- name: Run unit tests
run: |
make test
bash <(curl -s https://codecov.io/bash)
- name: Run integration tests
run: |
make test-integration
typecheck:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install poetry
poetry install
- name: Typecheck
run: |
make typecheck