Merge pull request #1260 from cuviper/le-ge #114
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: main | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '0 0 * * 0' # 00:00 Sunday | |
jobs: | |
test: | |
name: Test (stable) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
profile: minimal | |
override: true | |
- run: cargo build --verbose | |
- run: cargo test --verbose --package rayon | |
- run: cargo test --verbose --package rayon-core | |
- run: ./ci/highlander.sh |