forked from NVIDIA/garak
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (58 loc) · 1.5 KB
/
Copy pathtest_linux.yml
File metadata and controls
66 lines (58 loc) · 1.5 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Garak pytest - Linux
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
workflow_call:
permissions:
actions: none
checks: none
contents: none
deployments: none
id-token: none
issues: none
discussions: none
packages: none
pages: none
pull-requests: none
repository-projects: none
security-events: none
statuses: none
env:
XDG_CACHE_HOME: ${{ github.workspace }}/.cache
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
python-version: ["3.10","3.12","3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Reduce disk usage
if: ${{ matrix.os }} == 'ubuntu-latest'
run: |
sudo rm -rf /usr/local/lib/android || true
sudo rm -rf /usr/share/dotnet || true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --no-cache-dir -r requirements.txt
python -m pip cache purge
- name: Restore test cache artifacts
id: cache-artifacts-restore
uses: actions/cache/restore@v4
with:
path: |
.cache/garak/data
.cache/huggingface
key: garak-test-resources-shared
- name: Test with pytest
run: |
python -m pytest tests/