Rust Beta #897
This file contains 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 Beta | |
on: | |
schedule: | |
- cron: "0 */24 * * *" | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
python-version: '3.12' | |
- name: apt-get update Ubuntu, libwayland-dev | |
run: | | |
sudo apt-get update | |
sudo apt-get install libwayland-dev | |
- name: Update Rust Beta | |
run: | | |
rustup update beta | |
rustup default beta | |
- name: Run tests | |
env: | |
RUSTFLAGS: -C target-feature=+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt,+avx,+fma | |
run: cargo test --verbose --features feature_capable,apply,fetch,geocode,foreach,python,luau,polars,lens |