Skip to content

Commit

Permalink
Merge branch 'main' into feat/rlp
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkolasg committed Nov 21, 2023
2 parents ba33d0e + 32acad3 commit 2022e91
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: mapreduce CI

on:
pull_request:
push:
branches:
- main

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --verbose
- name: Check fmt
run: cargo fmt --check
- name: Run tests
run: cargo test --verbose

0 comments on commit 2022e91

Please sign in to comment.