Skip to content

chore: move nightly code to its own branch #11

chore: move nightly code to its own branch

chore: move nightly code to its own branch #11

Workflow file for this run

name: CI
on:
# Trigger the workflow on push and pull requests to the main branch
push:
branches:
- nightly
pull_request:
branches:
- nightly
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: --deny warnings
RUSTDOCFLAGS: --deny warnings
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: nightly

Check failure on line 22 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 22, Col: 28): Unexpected value 'nightly'
feature-set: [default, missing_auto_plugin_is_compile_error]
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Install Rust for the selected toolchain
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
# Run tests with the specified feature set
- name: Run tests
run: |
echo "Testing with ${{ matrix.toolchain }} and features: ${{ matrix.toolchain }},${{ matrix.feature-set }}"
cargo test --features "${{ matrix.toolchain }},${{ matrix.feature-set }}"