Add binary search #27
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: Rust | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Example files-std Build | |
| run: cargo build --verbose | |
| working-directory: examples/files-std | |
| - name: Example hello-cargo Build | |
| run: cargo build --verbose | |
| working-directory: examples/hello-cargo | |
| - name: Example iron-gcd Build | |
| run: cargo build --verbose | |
| working-directory: examples/iron-gcd | |
| - name: Example mandelbrot-plot Build | |
| run: cargo build --verbose | |
| working-directory: examples/mandelbrot-plot | |
| - name: Example mandelbrot-plot Run tests | |
| run: cargo test --verbose | |
| working-directory: examples/mandelbrot-plot |