-
Notifications
You must be signed in to change notification settings - Fork 74
43 lines (36 loc) · 997 Bytes
/
cli_checks.yml
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
# This file is used for testing various CLI commands,
# either for development or users, that may otherwise be
# difficult to test in a programmatic way or require
# significant amounts of setup
name: CLI Command Checks
on:
pull_request:
paths-ignore:
- "**.md"
- "clients/**"
- ".vscode/**"
- ".github/workflows/frontend_checks.yml"
push:
branches:
- "main"
- "release-**"
env:
DEFAULT_PYTHON_VERSION: "3.10.13"
jobs:
# Basic smoke test of a local install of the fides Python CLI
Fides-Install:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
- name: Install Nox
run: pip install nox>=2022
- name: Install fides
run: pip install .
- name: Run `fides --version`
run: fides --version