Update labs microgalaxy to include trainigs and toturials #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code best practice and unittesting | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'sources/bin/**' # This will trigger the workflow only if files in the 'bin' folder are modified. | |
concurrency: | |
group: lint-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install tox | |
run: python -m pip install 'tox>=1.8.0' | |
- name: Lint | |
run: tox -e lint | |
unittest: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ['3.11'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install requirements | |
run: python -m pip install -r requirements.txt | |
- name: Run unittests | |
run: | | |
cd sources | |
PYTHONPATH=bin python -m unittest discover -s bin/tests |