Skip to content

build(release): version: 1.9.0 #84

build(release): version: 1.9.0

build(release): version: 1.9.0 #84

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
pull_request:
branches: [master, develop]
push:
branches: [master, develop]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@main
- name: install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@main
with:
cache: poetry
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: poetry install --with dev
- name: Check code
run: poetry run ruff muffin_sentry
- name: Check typing
run: poetry run mypy
- name: Test with pytest
run: poetry run pytest tests.py
notify:
runs-on: ubuntu-latest
needs: tests
steps:
- name: Notify Success
uses: archive/github-actions-slack@master
with:
slack-channel: C2CRL4C4V
slack-text: Tests are passed *[${{ github.repository }}] (${{ github.ref }})* https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_TOKEN }}
slack-optional-as_user: false
slack-optional-icon_emoji: ":white_check_mark:"