Removed deprecated get_whois_privacy and renew_whois_privacy (#484) #832
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: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - v*.*.* | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| markdownlint-cli: | |
| name: Lint markdown | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Run markdownlint-cli | |
| uses: nosborn/github-action-markdown-cli@v3.5.0 | |
| with: | |
| files: . | |
| config_file: ".markdownlint.yaml" | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Python ${{ matrix.python-version }} | |
| needs: | |
| - markdownlint-cli | |
| strategy: | |
| matrix: | |
| python-version: | |
| - '3.12' | |
| - '3.13' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up Poetry | |
| uses: abatilo/actions-poetry@v4 | |
| with: | |
| poetry-version: '1.4.1' | |
| - run: make test |