Skip to content

Commit 48181b6

Browse files
committed
add building pysymgym workflow
1 parent 7c0cc41 commit 48181b6

2 files changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/build_docker.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Test build pysymgym container and run tests
2+
3+
on: [ push, pull_request ]
4+
5+
jobs:
6+
set-up-and-test-docker:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout repository
10+
uses: actions/checkout@v4
11+
12+
- name: Set up Python 3.14
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.14'
16+
cache: 'pip'
17+
18+
- name: Install dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install -r requirements.txt
22+
23+
- name: Build dockerfile and update dataset
24+
run: |
25+
python backend/launch_service/app_setup.py
26+
27+
- name: Run Python tests
28+
run: |
29+
python -m pytest backend/launch_service -v

.github/workflows/test.yml renamed to .github/workflows/build_without_docker_run_file_utils_tests.yml

File renamed without changes.

0 commit comments

Comments
 (0)