Skip to content

Commit

Permalink
ci: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
kostya-zero committed Jul 3, 2024
1 parent 33e1077 commit 06caab1
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 18 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on: push

jobs:
lint:
strategy:
matrix:
include:
- os: macos-latest
target: x86_64-apple-darwin
- os: macos-latest
target: aarch64-apple-darwin
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Rust Toolchain
uses: actions-rs/[email protected]
with:
toolchain: stable
override: true
components: clippy
- name: Run Clippy
run: cargo clippy --no-deps -- -D clippy::all
18 changes: 0 additions & 18 deletions .github/workflows/clippy.yml

This file was deleted.

0 comments on commit 06caab1

Please sign in to comment.