Skip to content

Lift nightly to beta #117

Lift nightly to beta

Lift nightly to beta #117

Workflow file for this run

# Copyright Gary Guo.
#
# SPDX-License-Identifier: MIT OR Apache-2.0
name: CI
on: ["push", "pull_request"]
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --release --verbose