-
Notifications
You must be signed in to change notification settings - Fork 3
89 lines (71 loc) · 1.81 KB
/
dummy_ci.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: EthicML dummy CI
on:
pull_request:
branches:
- main
paths: # these are exactly the paths that are ignored in the real CI
- 'docs/**'
- 'examples/**'
- '**/*.md'
- .github/dependabot.yml
- .github/release.yml
- .github/workflows/docs.yml
- .github/workflows/dummy_ci.yml
- .github/workflows/dependabot_auto.yml
- .github/workflows/labeler.yml
- .gitignore
- CODEOWNERS
- LICENSE
- make_release.sh
- CITATION.cff
jobs:
lint_with_ruff:
runs-on: ubuntu-latest
steps:
- name: Lint with ruff
run: |
echo "pass!"
format_with_black:
runs-on: ubuntu-latest
steps:
- name: Format with black
run: |
echo "pass!"
check_with_pydoclint:
runs-on: ubuntu-latest
steps:
- name: Check with pydoclint
run: |
echo "pass!"
test_minimal_dependencies:
runs-on: ubuntu-latest
steps:
- name: Test import
run: |
echo "pass!"
test_build_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.10
- name: Install dependencies
run: uv sync --no-install-project --all-extras --group ci --group torchcpu --group docs --no-group lint --no-group doclint
- name: Test import
run: |
uv run python -c "import ethicml"
- name: Install pandoc
run: sudo apt-get install -y pandoc
- name: Build with sphinx
run: |
uv run sphinx-build -W -b html ./docs ./docs/_build
test_with_pytest:
runs-on: ubuntu-latest
steps:
- name: Test with pytest
run: |
echo "pass!"