convert between different metadata conventions #727
Workflow file for this run
  
    
      This file contains hidden or 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: Upstream-dev CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| types: [opened, reopened, synchronize, labeled] | |
| schedule: | |
| - cron: "0 0 * * 1" # Mondays “At 00:00” UTC | |
| workflow_dispatch: # allows you to trigger the workflow run manually | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| detect-ci-trigger: | |
| name: detect ci trigger | |
| runs-on: ubuntu-latest | |
| if: | | |
| github.repository_owner == 'xarray-contrib' && github.event_name == 'pull_request' | |
| outputs: | |
| triggered: ${{ steps.detect-trigger.outputs.trigger-found }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 2 | |
| - uses: xarray-contrib/ci-trigger@v1 | |
| id: detect-trigger | |
| with: | |
| keyword: "[test-upstream]" | |
| tests: | |
| name: upstream-dev | |
| runs-on: ubuntu-latest | |
| needs: detect-ci-trigger | |
| if: | | |
| always() | |
| && ( | |
| (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') | |
| || needs.detect-ci-trigger.outputs.triggered == 'true' | |
| || contains( github.event.pull_request.labels.*.name, 'run-upstream') | |
| ) | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 # Fetch all history for all branches and tags | |
| - name: remove lockfile | |
| run: | | |
| rm pixi.lock | |
| - name: setup environment | |
| uses: prefix-dev/setup-pixi@194d461b21b6c5717c722ffc597fa91ed2ff29fa # 0.9.1 | |
| with: | |
| environments: "nightly" | |
| - name: Import xdggs | |
| run: | | |
| pixi run -e nightly python -c "import xdggs" | |
| - name: run tests | |
| if: success() | |
| id: status | |
| run: | | |
| pixi run -e nightly tests -rf --report-log=pytest-log.jsonl | |
| - name: Generate and publish a failure report | |
| if: | | |
| failure() | |
| && steps.run-tests.outcome == 'failure' | |
| && github.event_name == 'schedule' | |
| && github.repository_owner == 'xarray-contrib' | |
| uses: xarray-contrib/issue-from-pytest-log@v1 | |
| with: | |
| log-path: pytest-log.jsonl |