Skip to content

Commit

Permalink
Update github actions file (#60)
Browse files Browse the repository at this point in the history
* Update github actions file

Removes mindmeld dependency as a part of the running matrix. Currently, our tests
aren't doing anything using mindmeld anyway (though they should).
  • Loading branch information
snow0x2d0 authored Mar 16, 2022
1 parent 12ebca0 commit 0a8025f
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Python package

on:
push:
branches: [ master, main ]
branches: [ main ]
pull_request:
branches: [ master, main ]
branches: [ main ]

jobs:
build:
Expand All @@ -17,20 +17,18 @@ jobs:
matrix:
python-version:
- 3.7
mindmeld-version:
- 4.3.5rc11
- 3.8
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies (MindMeld ${{ matrix.mindmeld-version }})
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
poetry run pip install mindmeld==${{ matrix.mindmeld-version }}
poetry install -E mindmeld
- name: Lintme
run: |
./lintme
Expand Down

0 comments on commit 0a8025f

Please sign in to comment.