We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43d8d7e commit 9b8ef95Copy full SHA for 9b8ef95
1 file changed
.github/workflows/issue1224.yml
@@ -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