chore(deps): update fluent-uri requirement from 0.3.2 to 0.4.1 #180
Workflow file for this run
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: Labels | |
| on: | |
| pull_request: | |
| types: | |
| - labeled | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-bundled-duckdb: | |
| name: Build w/ bundled DuckDB | |
| if: ${{ github.event.label.name == '[build] bundled-duckdb' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Build | |
| run: cargo build -p rustac -F duckdb-bundled | |
| - name: Test | |
| run: cargo test -p rustac -F duckdb-bundled |