Skip to content

perf: avoid square root computation when possible #92

perf: avoid square root computation when possible

perf: avoid square root computation when possible #92

Workflow file for this run

name: ci_linux
on:
schedule:
# * is a special character in YAML so you have to quote this string
# The final 1 indicates that we want to run this test on Tuesdays, making
# this a weekly test.
- cron: '30 2 * * 1'
workflow_dispatch:
pull_request:
push:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install nightly
run: |
rustup default nightly
- uses: actions/checkout@v3
- name: Build workspace
run: |
cargo build --workspace --tests
- name: Run tests
run: |
cargo test --tests