Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add endpoint tests #34

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .cargo/config.toml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI
on:
pull_request:
env:
RUSTFLAGS: -Dwarnings

jobs:
check_and_test:
name: It builds and tests pass
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Add wasm32-wasip2 target
run: rustup target add wasm32-wasip2
- name: Install cargo-binstall
uses: cargo-bins/[email protected]
- name: Install cargo-component
shell: bash
run: cargo binstall cargo-component
- name: Run cargo check
shell: bash
run: cargo component check

check_style:
name: It follows all style conventions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install wasm32-wasip2 target
run: rustup target add wasm32-wasip2
- name: Run cargo clippy
run: cargo clippy -- -Dwarnings
- name: Run cargo fmt
run: cargo fmt --all -- --check
Loading