fix(oca-gen-addon-readme): reduce unneeded merge conflicts #546
Workflow file for this run
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 | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
release: | |
types: [created] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
steps: | |
# Prepare environment | |
- uses: actions/checkout@v3 | |
# Install specific alternate python versions required by hooks | |
- name: Install python | |
uses: actions/setup-python@v4 | |
with: | |
cache: poetry | |
python-version: | | |
3.6 | |
3.7 | |
3.8 | |
3.10 | |
3.11 | |
3.12 | |
# Let tests issue git commits | |
- run: git config --global user.name CI | |
- run: git config --global user.email CI@GITHUB | |
# Run all tests | |
- run: poetry run pytest --color yes |