Skip to content

Commit

Permalink
ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkircos committed Nov 29, 2023
1 parent 962c1ed commit b04065b
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci-fast-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: CI Fast (test)

on:
push:
branches:
- main
pull_request:

jobs:
rust-tests:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Run Rust tests in quadratic-core
run: |
cd quadratic-core
cargo test
- name: Run cargo clippy in quadratic-core
run: |
cd quadratic-core
cargo clippy -- -D warnings
javascript-tests:
runs-on: self-hosted
needs: rust-tests
steps:
- uses: actions/checkout@v3

- name: Run pnpm test:ci in quadratic-client
run: |
cd quadratic-client
pnpm install
pnpm run test:unit
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b04065b

Please sign in to comment.