Skip to content

Commit b2a9ae5

Browse files
committed
ci(desrapbook): add temporary minimal versions of CI/CD from des-rap-book, to test
1 parent c4618a8 commit b2a9ae5

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

.github/workflows/temp-lint.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: lint
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
lint:
9+
runs-on: ubuntu-latest
10+
steps:
11+
12+
- name: Check out repository
13+
uses: actions/checkout@v4
14+
15+
- name: Install python and dependencies
16+
uses: actions/setup-python@v4
17+
with:
18+
python-version: '3.13'
19+
cache: 'pip'
20+
- run: pip install -r requirements.txt
21+
22+
- name: Lint
23+
run: |
24+
bash lint.sh

.github/workflows/temp-tests.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: tests
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
tests:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Check out repository
12+
uses: actions/checkout@v4
13+
14+
- name: Install python and dependencies
15+
uses: actions/setup-python@v4
16+
with:
17+
python-version: '3.13'
18+
cache: 'pip'
19+
20+
- name: Install requirements
21+
run: pip install -r requirements.txt
22+
23+
- name: Run tests
24+
run: pytest

0 commit comments

Comments
 (0)