Skip to content

fix(ci): add nightly in ci #2

fix(ci): add nightly in ci

fix(ci): add nightly in ci #2

Workflow file for this run

name: do all tests
on:
push:
branches:
- "master"
- "dev*"
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo +nightly build --verbose
- name: Run tests
run: cargo +nightly test --verbose