Skip to content

Commit 883f291

Browse files
author
Matthias Koeppe
committed
Add build-docker.yml
1 parent e89e800 commit 883f291

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/build-docker.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Build and test Python package using a Docker image
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
container: sagemath/sagemath-develop
9+
steps:
10+
- name: Test package
11+
- run: |
12+
sage --version
13+
python3 setup.py test
14+
15+

0 commit comments

Comments
 (0)