Skip to content

feat: first basic conf #1

feat: first basic conf

feat: first basic conf #1

Workflow file for this run

# name: CI
# on:
# push:
# branches: [main]
# paths-ignore:
# - "README.md"
# - "doc/**"
# pull_request:
# branches: [main]
# paths-ignore:
# - "README.md"
# - "doc/**"
# jobs:
# test:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python 3.10
# uses: actions/setup-python@v2
# with:
# python-version: "3.10"
# - name: Install dependencies for requirements and testing
# run: |
# python -m pip install --upgrade pip
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
# - name: Lint with pylint
# run: |
# pylint src/*
# - name: Create token.txt
# run: |
# echo ${{ secrets.TOKEN }} > token.txt
# - name: Test with pytest
# run: |
# pytest --cov=src --cov=main tests/ --cov-fail-under=75
# - name: Delete token.txt
# run: |
# rm -f token.txt