Skip to content

Epic-pandas CI

Epic-pandas CI #31

Workflow file for this run

name: Epic-pandas CI
on:
push:
paths-ignore:
- "*.md"
- .gitignore
pull_request:
types: [opened, reopened]
schedule:
- cron: '20 3 5,20 * *'
jobs:
test:
name: 'Test os=${{ matrix.os }} py=${{ matrix.python-version }}/${{ matrix.architecture}}'
timeout-minutes: 60
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11']
include:
- architecture: 'x64'
flag-ignore-failure: false
- os: ubuntu-latest
python-version: '3.10'
archive-artifacts: true
exclude:
- os: macos-latest
python-version: '3.11'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Build, install and test
timeout-minutes: 5
shell: bash
run: ./ci.sh
continue-on-error: ${{ matrix.flag-ignore-failure }}
- name: Archive library
if: ${{ matrix.archive-artifacts }}
uses: actions/upload-artifact@v3
with:
name: library
path: dist/*.zip
- name: Archive code coverage results
if: ${{ matrix.archive-artifacts }}
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: workdir/cov_html.zip