Skip to content

Commit

Permalink
Merge pull request #2 from omarahm3/feat/workflow
Browse files Browse the repository at this point in the history
Feat/workflow
  • Loading branch information
omarahm3 authored Dec 25, 2021
2 parents 07de99e + c99c414 commit 4ca0e11
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on: [push]

name: CI

jobs:
build_and_test:
name: Switcher
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: fmt
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features

0 comments on commit 4ca0e11

Please sign in to comment.