Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mateolafalce committed Dec 19, 2024
0 parents commit 235ade5
Show file tree
Hide file tree
Showing 15 changed files with 4,219 additions and 0 deletions.
84 changes: 84 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: CI
on:
push:
branches:
- main
pull_request:

jobs:


tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- name: version info
run: rustc --version; cargo --version;

- name: Run all tests
run: cargo test

- name: Run all tests (no default features)
run: cargo test --no-default-features


fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check


clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings


build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --all-features
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
/Cargo.lock
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[workspace]
members = ["examples/*"]
resolver = "2"
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

Loading

0 comments on commit 235ade5

Please sign in to comment.