Skip to content

update github actions ci workflow for rust #15

update github actions ci workflow for rust

update github actions ci workflow for rust #15

Workflow file for this run

on: [push, pull_request]
name: CI
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose