Support receiving own proposals without an error #868
Workflow file for this run
This file contains 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: Features | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
jobs: | |
BuildAndTest: | |
strategy: | |
matrix: | |
# XXX(RLB) According to the Github Runners repo, this should be the | |
# default, but without this line, we get "error: 'cryptokit-bridge': | |
# package 'cryptokit-bridge' is using Swift tools version 5.9.0 but the | |
# installed version is 5.7.1" | |
os: [ubuntu-latest, macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Install cargo-hack | |
run: cargo install cargo-hack | |
- name: Build one feature at a time | |
run: cargo hack build --each-feature --workspace --exclude harness_client |