dimagi / django-cte

Common Table Expressions (CTE) for Django
Other
334 stars 46 forks source link

Switch CI to Github Actions #42

Closed millerdev closed 2 years ago

millerdev commented 2 years ago

The "experimental" job will appear to pass even when it fails (as allowed) because of continue-on-error: true. One must open the Actions log and inspect test output to observe test failures for that job. Github Actions apparently does not have a feature similar to Travis' allow-failure yet, which marks the overall test suite as passed, but allows individual jobs to fail and indicates the failure in the job summary. See https://github.com/actions/runner/issues/2347