Skip to content

fix(oca-gen-addon-readme): reduce unneeded merge conflicts #546

fix(oca-gen-addon-readme): reduce unneeded merge conflicts

fix(oca-gen-addon-readme): reduce unneeded merge conflicts #546

Workflow file for this run

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