Skip to content

v 0.0.43 fix slack_add #24

v 0.0.43 fix slack_add

v 0.0.43 fix slack_add #24

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: install packages
run: make install
- name: lint
run: make lint
- name: test
run: make test
- name: format
run: make format
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
verbose: true
env:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}