mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-03 12:21:35 +00:00
Test run of GitHub Actions
This commit is contained in:
23
.github/workflows/pythonpackage.yml
vendored
Normal file
23
.github/workflows/pythonpackage.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
name: GAM
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: [3.5, 3.6, 3.7]
|
||||||
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Set up $(( matrix.runs-on )) Python ${{ matrix.python-version }}
|
||||||
|
uses: actions/setup-python@v1
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -r src/requirements.txt
|
||||||
|
- name: Run GAM
|
||||||
|
run: |
|
||||||
|
python src/gam.py version extended
|
||||||
Reference in New Issue
Block a user