-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (29 loc) · 838 Bytes
/
Copy pathtest-crypt.yml
File metadata and controls
36 lines (29 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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