1name: Features 2 3on: 4 pull_request: 5 branches: [main] 6 workflow_dispatch: 7 8jobs: 9 features: 10 name: Test Feature Combinations 11 runs-on: ubuntu-latest 12 strategy: 13 fail-fast: true 14 steps: 15 - uses: actions/checkout@v2 16 - name: Install latest nightly 17 uses: actions-rs/toolchain@v1 18 with: 19 toolchain: nightly 20 override: true 21 components: rustfmt, clippy 22 - run: ci/test.sh 23 - run: NIGHTLY=1 NO_STD=1 ci/test.sh 24