Skip to content

Updated dependencies #125

Updated dependencies

Updated dependencies #125

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [macos-latest]
python-version: ['3.10']
poetry-version: [1.4.2]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: ${{ matrix.poetry-version }}
# - name: Install System Dependencies (macOS)
# if: runner.os == 'macOS'
# run: |
# brew install pkg-config
# brew install libffi
# brew install cairo
# brew install pango
# brew install gsed
- name: Install dependencies
run: |
make install
- name: Linting
run: |
make lint