From 3eca4109a49da0fc32deca57d7360b703279c777 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 12 Aug 2019 23:53:33 +0200 Subject: [PATCH] Try out GitHub CI --- .github/workflows/pythonpackage.yml | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/pythonpackage.yml diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml new file mode 100644 index 0000000..5d85ccd --- /dev/null +++ b/.github/workflows/pythonpackage.yml @@ -0,0 +1,30 @@ +name: Python package + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + max-parallel: 4 + matrix: + python-version: [3.7] + + steps: + - uses: actions/checkout@master + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Check syntax + run: | + python -m py_compile world.py + # - name: Test with pytest + # run: | + # pip install pytest + # pytest