Skip to content

test removing crypto #2

test removing crypto

test removing crypto #2

Workflow file for this run

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