Merge pull request #18 from scientific-python/ci #107
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: Test Action | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| - "*.*" | |
| tags: | |
| - "v*" | |
| pull_request: | |
| # Allow manual runs through the web UI | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| generate_data: | |
| runs-on: ubuntu-latest | |
| name: Run action on test file in repo | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Generate version data using local action | |
| uses: ./ | |
| with: | |
| project_file_name: tests/test_data/pyproject.toml | |
| create_pr: false | |
| schedule_path: tests/test_data/test_schedule.json |