Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ULis3h committed Jul 12, 2023
1 parent f16b2d5 commit 0471dc0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Rust CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build-and-test:
runs-on: ubuntu-latest

steps:
- name: Set up Rust
uses: actions/setup-rust@v1
with:
rust-version: stable

- name: Check out code
uses: actions/checkout@v2

- name: Build
run: cargo build --verbose

- name: Test
run: cargo test --verbose

0 comments on commit 0471dc0

Please sign in to comment.