Skip to content

Commit

Permalink
added a workflow for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cptpiepmatz committed Sep 14, 2024
1 parent 5d19674 commit f7befa7
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: continous-integration

on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev

jobs:
build:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Rust
uses: actions/setup-rust@v1
with:
rust-version: stable

- name: Check nu_plugin_plotters
run: cargo check -p nu_plugin_plotters

- name: Check nu-jupyter-kernel
run: cargo check -p nu-jupyter-kernel

- name: Doc
run: cargo doc

0 comments on commit f7befa7

Please sign in to comment.