Skip to content

Commit

Permalink
Initial toolkit setup and first version of a demux command.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Roach authored and tfenne committed Dec 23, 2022
1 parent ca9f349 commit 045fc54
Show file tree
Hide file tree
Showing 15 changed files with 3,728 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Check

on: [push, pull_request]

env:
CARGO_TERM_COLOR: always

jobs:
precommit:
name: Pre-commit
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- name: Cache dependencies
uses: Swatinem/rust-cache@v2

- name: Run tests
run: bash src/scripts/precommit.sh

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
.vscode
Loading

0 comments on commit 045fc54

Please sign in to comment.