Skip to content

Bump draftsman/factorio-data from ec79bdc to 20a5999 #165

Bump draftsman/factorio-data from ec79bdc to 20a5999

Bump draftsman/factorio-data from ec79bdc to 20a5999 #165

Workflow file for this run

name: Example workflow for Codecov
on: [push]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.10.4'
steps:
- uses: actions/checkout@master
with:
submodules: true
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.10.4
- name: Generate coverage report
run: |
pip install coverage
pip install -e .
coverage run
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
directory: ./coverage/reports/
env_vars: PYTHON
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
verbose: true