test removing crypto #2
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: Test crypt module | |
| on: | |
| push: | |
| branches: | |
| - test-973 | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, ubuntu-22.04] | |
| python-version: ['3.10.20', '3.11.15', '3.12.13'] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Clear cache | |
| run: | | |
| mv "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old" | |
| mkdir -p "${{ runner.tool_cache }}" | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: priya-kinthali/setup-python@test-version | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Check Python version | |
| run: python3 --version | |
| - name: Run crypt test | |
| run: python3 crypt_test.py |