Skip to content

Commit

Permalink
update to stable2409 (#1)
Browse files Browse the repository at this point in the history
* update to stable2409

* fix
  • Loading branch information
xlc authored Oct 29, 2024
1 parent ab5cb3c commit 83f57f5
Show file tree
Hide file tree
Showing 5 changed files with 1,121 additions and 2,416 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Test

on:
pull_request:
branches:
- master
paths-ignore:
- '**/README.md'
push:
branches:
- master
paths-ignore:
- '**/README.md'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
- name: Install Wasm toolchain
run: rustup target add wasm32-unknown-unknown
- name: Check format
run: cargo fmt --check
- name: Install clippy
run: rustup component add clippy
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Check
run: cargo check
Loading

0 comments on commit 83f57f5

Please sign in to comment.