CI tests in Python 3.9 #25
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: nuscenes-devkit CI pipeline | ||
|
Check failure on line 1 in .github/workflows/pipeline.yml
|
||
| on: [pull_request] | ||
| env: | ||
| NUSCENES: data/sets/nuscenes | ||
| NUIMAGES: data/sets/nuimages | ||
| jobs: | ||
| Test in 3.9: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - id: Test in Python 3.9 | ||
| uses: ./.github/actions/python-tests | ||
| with: | ||
| python-version: 3.9 | ||
| Test in 3.12: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - id: Test in Python 3.12 | ||
| uses: ./.github/actions/python-tests | ||
| with: | ||
| python-version: 3.12 | ||