Lift nightly to beta #324
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
| # Copyright Gary Guo. | |
| # | |
| # SPDX-License-Identifier: MIT OR Apache-2.0 | |
| name: CI | |
| on: | |
| schedule: | |
| # Trigger a build every workday to capture rustc change. | |
| - cron: '53 9 * * 1-5' | |
| workflow_dispatch: {} | |
| push: {} | |
| pull_request: {} | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: sudo apt install libsqlite3-dev | |
| - name: Build | |
| run: cargo build --release --verbose | |
| - name: Run tests | |
| run: cargo test --release --verbose |