Skip to content

Commit

Permalink
Rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
mgziminsky committed Oct 10, 2024
1 parent 1adf43a commit 408d1d8
Show file tree
Hide file tree
Showing 49 changed files with 3,498 additions and 1,204 deletions.
48 changes: 0 additions & 48 deletions .github/ISSUE_TEMPLATE/bug-report.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/ISSUE_TEMPLATE/feature-request.yml

This file was deleted.

122 changes: 0 additions & 122 deletions .github/workflows/build.yml

This file was deleted.

74 changes: 74 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: ci
on:
workflow_dispatch:
pull_request:
push:
paths:
- Cargo.lock
- "**/Cargo.toml"
- "*.toml"
- "**.rs"
- .github/workflows/ci.yml
branches:
- main
schedule:
- cron: "03 02 01 * *"

permissions:
contents: read

jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: rustfmt
- name: Check formatting
uses: actions-rust-lang/rustfmt@v1

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: clippy
- name: Lint code
run: cargo clippy --locked --release --verbose --workspace

docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Check documentation
run: cargo doc --no-deps --document-private-items --locked --release --verbose --workspace

build_and_test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
rust:
# MSRV
- 1.80.0
- stable
- beta
- nightly
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: build
run: cargo build --locked --release --verbose --workspace
- name: test
run: cargo test --locked --release --verbose --workspace
Loading

0 comments on commit 408d1d8

Please sign in to comment.