Skip to content

Remove Allocate, Free, and ModeLiteral from IR (#72) #122

Remove Allocate, Free, and ModeLiteral from IR (#72)

Remove Allocate, Free, and ModeLiteral from IR (#72) #122

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
env:
python-version: "3.10"
poetry-version: "1.7.1"
jobs:
test:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: ["ubuntu-22.04", "macos-12"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==${{ env.poetry-version }}
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install environment
run: poetry install
- name: Test with nox
run: >-
poetry run nox -s
test-${{ matrix.python-version }}
test_numpy-${{ matrix.python-version }}
test_taco-${{ matrix.python-version }}
- name: Delete extraneous Mac files
# I have no idea where these come from, but they break report generation
run: find . -name ".coverage.*.Mac-*" -delete
- name: Store coverage
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.python-version }}-${{ matrix.os }}
path: .coverage.*
coverage:
needs: test
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==${{ env.poetry-version }}
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
cache: poetry
- name: Install environment
run: poetry install
- name: Fetch coverage
uses: actions/download-artifact@v4
with:
pattern: coverage-*
merge-multiple: true
- name: Combine coverage and generate report
run: poetry run nox -s coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==${{ env.poetry-version }}
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
cache: poetry
- name: Install environment
run: poetry install
- name: Run code quality checks
run: poetry run nox -s lint
poetry-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==${{ env.poetry-version }}
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
- name: Validate Poetry configuration and lockfile freshness
run: poetry lock --check