Skip to content

Create local branches for the tests in CI. #60

Create local branches for the tests in CI.

Create local branches for the tests in CI. #60

Workflow file for this run

name: Rust
on: [push, pull_request]
jobs:
stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create local branches for tests
run: |
for branch in test-root test-submodule-{a,b,c}; do
git branch --track "$branch" "origin/$branch"
done
- name: Build
run: cargo +stable build --verbose
- name: Run tests
run: cargo +stable test --verbose
nightly:
runs-on: ubuntu-latest
steps:
- name: Install Rust nightly
run: rustup install nightly
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create local branches for tests
run: |
for branch in test-root test-submodule-{a,b,c}; do
git branch --track "$branch" "origin/$branch"
done
- name: Build
run: cargo +nightly build --verbose
- name: Run tests
run: cargo +nightly test --verbose