Use https intead of ssh for git repos in CI/CD #7
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| merge_group: | |
| push: | |
| pull_request: | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| max-parallel: 1 | |
| matrix: | |
| os: [ubuntu-24.04, macos-13, windows-2022] | |
| python-version: ["3.13"] | |
| include: | |
| - os: ubuntu-24.04 | |
| name: Linux | |
| - os: macos-13 | |
| name: macOS | |
| - os: windows-2022 | |
| name: Windows | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install poetry | |
| run: pipx install poetry==2.1.2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "poetry" | |
| - name: Install dependencies | |
| run: | | |
| # poetry default git client `dulwich` doesn't work properly with git urls | |
| # to dependencies, which we use | |
| poetry config system-git-client true | |
| # we access only public repositories, use https instead to avoid set up of | |
| # ssh key | |
| git config --global url."https://github".insteadOf "git://github" | |
| poetry install | |
| shell: bash | |
| - name: Lint | |
| run: | | |
| poetry run python -m finecode run lint | |
| shell: bash | |
| # - name: Run unit tests | |
| # if: ${{ !cancelled() }} | |
| # run: | | |
| # poetry run python -m pytest tests/ | |
| # shell: bash |