Skip to content

Analyzer: Add support for ARM64 version of Linux #142

Analyzer: Add support for ARM64 version of Linux

Analyzer: Add support for ARM64 version of Linux #142

Workflow file for this run

name: Tests
on:
- push
jobs:
os-python-matrix:
strategy:
matrix:
os:
- name: macos
icon: 🍏
- name: ubuntu
icon: 🐧
- name: windows
icon: 🪟
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
runs-on: ${{ matrix.os.name }}-latest
name: ${{ matrix.os.icon }} Python ${{ matrix.python-version }}
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
check-latest: true
- name: Install dependencies
run: |
pip install .[dev,test]
- name: Check code
run: make check
- name: Test code
run: make test