Adding Tabu search as new algorithm #21
Workflow file for this run
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 Quality | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
codestyle: | |
name: codestyle | |
runs-on: ubuntu-latest | |
if: github.ref != 'refs/heads/main' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11.x' | |
architecture: 'x64' | |
- name: Install Poetry and dependencies | |
uses: SneaksAndData/github-actions/[email protected] | |
with: | |
pypi_repo_url: ${{ secrets.AZOPS_PYPI_REPO_URL }} | |
pypi_token_username: ${{ secrets.AZOPS_PAT_USER }} | |
pypi_token: ${{ secrets.AZOPS_PAT }} | |
- name: Black | |
shell: bash | |
run: | | |
set -e | |
poetry run black . --check --diff | |
- name: Lint | |
run: | | |
set -e | |
find ./anti_clustering -type f -name "*.py" | xargs poetry run pylint |