feat: adiciona cobraça extra por churrasco #9
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: CI | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ '3.x', 'pypy-3.6', 'pypy-3.7' ] | |
name: "Python ${{ matrix.python-version }}: teste" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configura python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Testa aplicação | |
run: python -m unittest src/tests/test_gerador_relatorio.py |