Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

build(docker): build image for linux/arm64 (#249) #447

build(docker): build image for linux/arm64 (#249)

build(docker): build image for linux/arm64 (#249) #447

Workflow file for this run

name: Python
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: make install
- name: Lint with flake8
run: make lint
- name: Test with pytest
run: make test