fix template path in message generator #94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test_python_pkg | |
on: [push, pull_request] | |
jobs: | |
test_on_ubuntu_latest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version_ubuntu-latest: [3.7, 3.8, 3.9, "3.10", 3.11] | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python ${{ matrix.python-version_ubuntu-latest }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version_ubuntu-latest }} | |
- name: Install dependencies | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Install python pkgs | |
run: ./install.sh | |
shell: bash | |
- name: install pytest pytest-cov | |
run: | | |
pip install pytest pytest-cov | |
- name: Test with pytest | |
run: | | |
export COVERAGE=true | |
./test.sh | |
shell: bash | |
lint: | |
name: pre-commit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: 3.x | |
- name: install pre-commit | |
run: pip install pre-commit | |
- name: pre-commit cache | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/pre-commit | |
key: "${{ hashFiles('.pre-commit-config.yaml') }}" | |
- run: pre-commit run --all-files --show-diff-on-failure |