imp_url: support dvcx datasets #15258
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches: [main, 2.x] | |
pull_request: | |
schedule: | |
- cron: '5 1 * * *' # every day at 01:05 | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
timeout-minutes: 50 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, windows-latest, macos-latest] | |
pyv: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.pyv }} | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: Update pip/wheel | |
run: pip install --upgrade pip wheel | |
- name: Install reflink | |
run: pip install reflink --use-pep517 | |
- name: install | |
run: pip install -e ".[dev]" | |
- uses: pre-commit/[email protected] | |
- name: run tests | |
timeout-minutes: 40 | |
env: | |
PYTHONUTF8: 1 | |
run: > | |
pytest -n=logical --timeout=300 --durations=100 | |
--cov --cov-report=xml --cov-report=term | |
- name: upload coverage report | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.xml | |
fail_ci_if_error: false | |
check: | |
if: always() | |
needs: [tests] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} | |
notify: | |
if: github.ref == 'refs/heads/main' && failure() | |
needs: [tests] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slack Notification | |
uses: rtCamp/[email protected] | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_COLOR: ${{ job.status }} | |
SLACK_MESSAGE: 'CI Failed on main :boom:' | |
SLACK_TITLE: CI Status | |
SLACK_USERNAME: DVC-CI |