Commit 10685f40 by Arun Babu Neelicattu Committed by GitHub

github: simplify main workflow (#2293)

Co-Authored-By: Pradyun Gedam <pradyunsg@gmail.com>

Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
parent 370d3256
...@@ -8,120 +8,63 @@ jobs: ...@@ -8,120 +8,63 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python 3.7 - name: Set up Python 3.8
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: 3.7 python-version: 3.8
- name: Linting - name: Linting
run: | run: |
pip install pre-commit pip install pre-commit
pre-commit run --all-files pre-commit run --all-files
Linux: Tests:
needs: Linting needs: Linting
runs-on: ubuntu-latest name: ${{ matrix.os }} / ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
strategy: strategy:
matrix: matrix:
os: [Ubuntu, MacOS, Windows]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8] python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Get full python version
id: full-python-version
run: |
echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
- name: Install and set up Poetry
run: |
python get-poetry.py --preview -y
source $HOME/.poetry/env
poetry config virtualenvs.in-project true
- name: Set up cache
uses: actions/cache@v1
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: |
source $HOME/.poetry/env
poetry install
- name: Test
run: |
source $HOME/.poetry/env
poetry run pytest -q tests
MacOS: - name: Set up Python ${{ matrix.python-version }}
needs: Linting uses: actions/setup-python@v1
runs-on: macos-latest with:
strategy: python-version: ${{ matrix.python-version }}
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps: - name: Get full python version
- uses: actions/checkout@v2 id: full-python-version
- name: Set up Python ${{ matrix.python-version }} shell: bash
uses: actions/setup-python@v1 run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
with:
python-version: ${{ matrix.python-version }}
- name: Get full python version
id: full-python-version
run: |
echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
- name: Install and set up Poetry
run: |
python get-poetry.py --preview -y
source $HOME/.poetry/env
poetry config virtualenvs.in-project true
- name: Set up cache
uses: actions/cache@v1
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: |
source $HOME/.poetry/env
poetry install
- name: Test
run: |
source $HOME/.poetry/env
.venv/bin/pytest -q tests
Windows: - name: Install poetry
needs: Linting shell: bash
runs-on: windows-latest run: |
strategy: curl -fsS -o get-poetry.py https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py
matrix: python get-poetry.py --preview -y
python-version: [2.7, 3.5, 3.6, 3.7, 3.8] echo "::set-env name=PATH::$HOME/.poetry/bin:$PATH"
steps: - name: Configure poetry
- uses: actions/checkout@v2 shell: bash
- name: Set up Python ${{ matrix.python-version }} run: poetry config virtualenvs.in-project true
uses: actions/setup-python@v1
with: - name: Set up cache
python-version: ${{ matrix.python-version }} uses: actions/cache@v1
- name: Get full python version id: cache
id: full-python-version with:
shell: bash path: .venv
run: | key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
- name: Install and setup Poetry - name: Ensure cache is healthy
run: | if: steps.cache.outputs.cache-hit == 'true'
python get-poetry.py --preview -y shell: bash
$env:Path += ";$env:Userprofile\.poetry\bin" run: poetry run pip --version >/dev/null 2>&1 || rm -rf .venv
poetry config virtualenvs.in-project true
- name: Set up cache - name: Install dependencies
uses: actions/cache@v1 shell: bash
with: run: poetry install
path: .venv
key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }} - name: Run pytest
- name: Install dependencies shell: bash
run: | run: poetry run pytest -q tests
$env:Path += ";$env:Userprofile\.poetry\bin"
poetry install
- name: Test
run: |
$env:Path += ";$env:Userprofile\.poetry\bin"
poetry run pytest -q tests
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment