Skip to content

Commit

Permalink
Add GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yestyle committed Feb 5, 2023
1 parent fc55a72 commit ef5e8b9
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install toolchain
run: |
rustup update
rustup component add clippy
- name : Toolchain info
run: |
cargo --version --verbose
rustc --version --verbose
- name: Run cargo build
run: |
cargo build --release
- name: Run cargo clippy
run: |
cargo clippy

0 comments on commit ef5e8b9

Please sign in to comment.