Skip to content

Update actions/checkout digest to b4ffde6 #583

Update actions/checkout digest to b4ffde6

Update actions/checkout digest to b4ffde6 #583

Workflow file for this run

name: Main
on:
pull_request:
push:
branches:
- master
jobs:
main:
strategy:
fail-fast: true
matrix:
os: [ubuntu-22.04, macos-12]
python: ['3.10.11', '3.11.3']
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: Project checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Setup Python
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4
with:
python-version: ${{ matrix.python }}
- name: Install Poetry
uses: snok/install-poetry@93ada01c735cc8a383ce0ce2ae205a21c415379b # v1.3
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: make setup
- name: Check codestyle
run: make inspect
- name: Run tests
run: make test
- name: Build Package
run: make build