Add Resources section with mcrouter blog post to README #7
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Clear macOS-specific flags | |
| run: | | |
| echo "CXXFLAGS=" >> $GITHUB_ENV | |
| echo "MACOSX_DEPLOYMENT_TARGET=" >> $GITHUB_ENV | |
| - name: Install build dependencies | |
| run: sudo apt-get update && sudo apt-get install -y build-essential clang libclang-dev | |
| - run: cargo check | |
| - run: cargo test | |
| - run: cargo clippy -- -D warnings |