Updated dependencies #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |