Skip to content

Commit

Permalink
Update github-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitrii Korchagin committed Aug 21, 2024
1 parent 9bdac8d commit 42a0342
Showing 1 changed file with 4 additions and 48 deletions.
52 changes: 4 additions & 48 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on: [push, pull_request]
name: Continuous integration

jobs:
check:
name: Check
build:
name: Build liteapi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -15,50 +15,6 @@ jobs:
override: true
- uses: actions-rs/cargo@v1
with:
command: check
command: build
args: --manifest-path=liteapi/Cargo.toml

# test:
# name: Test Suite
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# override: true
# - uses: actions-rs/cargo@v1
# with:
# command: test

fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings

0 comments on commit 42a0342

Please sign in to comment.