Skip to content

Commit 9b8ef95

Browse files
authored
Create issue1224.yml
1 parent 43d8d7e commit 9b8ef95

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/issue1224.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: isssue1224
2+
on: workflow_dispatch
3+
tests:
4+
name: Unit tests and coverage
5+
runs-on: ubuntu-latest
6+
7+
container:
8+
image: custom-image-based-on-ubuntu22
9+
options: --entrypoint /bin/bash
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.12'
16+
- run: |
17+
python -m venv /env
18+
. /env/bin/activate
19+
pip install --upgrade pip
20+
pip install -r requirements.txt

0 commit comments

Comments
 (0)