forked from theupdateframework/python-tuf
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (26 loc) · 829 Bytes
/
_test_sslib_main.yml
File metadata and controls
32 lines (26 loc) · 829 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
on:
workflow_call:
# Permissions inherited from caller workflow
permissions: {}
jobs:
sslib-main:
name: Test securesystemslib main branch (not a merge blocker)
runs-on: ubuntu-latest
steps:
- name: Checkout TUF
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: '3.x'
cache: 'pip'
cache-dependency-path: |
requirements/*.txt
pyproject.toml
- name: Install dependencies
run: |
python3 -m pip install --constraint requirements/build.txt tox
- name: Run tox
run: tox -e with-sslib-main