Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
973 B
YAML
41 lines
973 B
YAML
name: Test Polyhedron Demo
|
|
|
|
on: [push, pull_request,workflow_dispatch]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
batch_1:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: install dependencies
|
|
run: .github/install.sh
|
|
- name: run1
|
|
run: ./.github/test.sh 0 ${{ github.workspace }}
|
|
batch_2:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: install dependencies
|
|
run: .github/install.sh
|
|
- name: run2
|
|
run: ./.github/test.sh 1 ${{ github.workspace }}
|
|
batch_3:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: install dependencies
|
|
run: .github/install.sh
|
|
- name: run3
|
|
run: ./.github/test.sh 2 ${{ github.workspace }}
|
|
batch_4:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: install dependencies
|
|
run: .github/install.sh
|
|
- name: run4
|
|
run: ./.github/test.sh 3 ${{ github.workspace }}
|