Skip to content

Commit 9d8319b

Browse files
committed
Trying out 3.13
1 parent a4beb57 commit 9d8319b

2 files changed

Lines changed: 72 additions & 0 deletions

File tree

.github/workflows/testLinux313.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+
name: Nagini Minimal Tests Ubuntu Python 3.13
5+
6+
on: [push, pull_request, workflow_dispatch]
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-22.04
12+
env:
13+
BOOGIE_EXE: "/home/runner/.dotnet/tools/boogie"
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Set up Python 3.13
17+
uses: actions/setup-python@v3
18+
with:
19+
python-version: "3.13"
20+
architecture: "x64"
21+
- name: Setup .NET
22+
uses: xt0rted/setup-dotnet@v1.5.0
23+
with:
24+
dotnet-version: 6.0.x
25+
- name: Install Boogie
26+
run: |
27+
dotnet tool install --global Boogie --version 2.15.9
28+
- name: Install Nagini
29+
run: |
30+
python -m pip install --upgrade pip
31+
pip install setuptools==68.2.0
32+
pip install .
33+
- name: Test with pytest
34+
run: |
35+
pytest -v -p no:faulthandler src/nagini_translation/tests.py --silicon --minimal

.github/workflows/testWin313.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+
name: Nagini Minimal Tests Windows Python 3.13
5+
6+
on: [push, pull_request, workflow_dispatch]
7+
8+
jobs:
9+
build:
10+
11+
runs-on: windows-latest
12+
env:
13+
BOOGIE_EXE: "/home/runner/.dotnet/tools/boogie"
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Set up Java 17
17+
uses: actions/setup-java@v4.4.0
18+
with:
19+
java-version: 17
20+
distribution: oracle
21+
- name: Set up Python 3.13
22+
uses: actions/setup-python@v2
23+
with:
24+
python-version: "3.13"
25+
architecture: "x64"
26+
- name: Install Boogie
27+
run: |
28+
dotnet tool install --global Boogie --version 2.15.9
29+
- name: Install Nagini
30+
run: |
31+
python -m pip install --upgrade pip
32+
pip install setuptools==68.2.0
33+
pip install pytest
34+
pip install .
35+
- name: Test with pytest
36+
run: |
37+
pytest -v -p no:faulthandler src/nagini_translation/tests.py --silicon --minimal

0 commit comments

Comments
 (0)