Skip to content

Memory relocation

Memory relocation #34

Workflow file for this run

name: Test/Fmt
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test_and_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: build
run: make build
- name: test
run: make test
- name: format
run: make check_fmt