Skip to content

feat: Implement RLP Encoding and Decoding #721

feat: Implement RLP Encoding and Decoding

feat: Implement RLP Encoding and Decoding #721

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Step 1 - Check out main branch
uses: actions/checkout@v3
- name: Step 2 - Getting scarb
uses: software-mansion/setup-scarb@v1
with:
scarb-version: 2.4.0-rc2
- name: Step 3 - Trying to build
run: scarb build
test:
needs: build
name: test
runs-on: ubuntu-latest
steps:
- name: Step 1 - Check out main branch
uses: actions/checkout@v3
- name: Step 2 - Getting scarb
uses: software-mansion/setup-scarb@v1
with:
scarb-version: 2.4.0-rc2
- name: Step 3 - Running tests
run: scarb test
check-format:
needs: build
name: check-format
runs-on: ubuntu-latest
steps:
- name: Step 1 - Check out main branch
uses: actions/checkout@v3
- name: Step 2 - Getting scarb
uses: software-mansion/setup-scarb@v1
with:
scarb-version: 2.4.0-rc2
- name: Step 3 - Checking formatting
run: scarb fmt --check