Skip to content

Commit

Permalink
Merge pull request anoma#10 from piotr-roslaniec/wasm-bindings
Browse files Browse the repository at this point in the history
WASM bindings
  • Loading branch information
piotr-roslaniec committed Nov 22, 2022
2 parents 41b5408 + 85fba9e commit f26552d
Show file tree
Hide file tree
Showing 49 changed files with 3,048 additions and 199 deletions.
36 changes: 0 additions & 36 deletions .github/workflows/build.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/workflows/manual.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Workspace

on:
pull_request:
paths-ignore:
- README.md
push:
branches:
- main
paths-ignore:
- README.md
tags:
- v*

env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"

jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
profile: minimal
- run: cargo clippy --all --all-features -- -D warnings

rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v1

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

- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/target
target
*.wasm
tpke-python/py-benches/inputs/
Loading

0 comments on commit f26552d

Please sign in to comment.