Merge pull request #9 from ricardogsilva/add-claude-md #15
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: Continuous Integration | |
| # | |
| #on: | |
| # push: | |
| # branches: | |
| # - main | |
| # pull_request: | |
| # branches: | |
| # - main | |
| # - | |
| #permissions: | |
| # contents: read | |
| # pages: write | |
| # id-token: write | |
| # | |
| #jobs: | |
| # ci: | |
| # runs-on: ubuntu-22.04 | |
| # steps: | |
| # - name: Checkout code | |
| # uses: actions/checkout@v3 | |
| # | |
| # - name: Install poetry | |
| # run: pipx install poetry==1.3.1 | |
| # | |
| # - name: setup Python cache | |
| # uses: actions/setup-python@v4 | |
| # with: | |
| # python-version: '3.10' | |
| # cache: poetry | |
| # | |
| # - name: Install package | |
| # run: poetry install --with dev --with docs | |
| # | |
| # - name: run pre-commit | |
| # run: poetry run pre-commit run --all-files | |
| # | |
| ## - name: Run tests | |
| ## run: poetry run pytest --suppress-no-test-exit-code | |
| # | |
| ## - name: Setup Pages | |
| ## id: pages | |
| ## uses: actions/configure-pages@v3 | |
| # | |
| # - name: (Re)build docs | |
| # run: poetry run mkdocs build | |
| # | |
| # - name: Upload artifact | |
| # uses: actions/upload-pages-artifact@v1.0.8 | |
| # with: | |
| # path: "site/" | |
| # | |
| # publish-docs: | |
| # environment: | |
| # name: github-pages | |
| # url: ${{ steps.deployment.outputs.page_url }} | |
| # runs-on: ubuntu-22.04 | |
| # needs: ci | |
| # if: github.ref == 'refs/heads/main' | |
| # steps: | |
| # - name: Deploy to github pages | |
| # id: deployment | |
| # uses: actions/deploy-pages@v2 |