Skip to content

Commit

Permalink
chore: add initial CI setup
Browse files Browse the repository at this point in the history
  • Loading branch information
katcipis committed Dec 21, 2023
1 parent db0830b commit 7ee146a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: tests
on: [push]
jobs:

build:
name: tests

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-22.04]
toolchain: ["stable", "nightly"]

steps:

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
components: rustfmt, clippy

- name: checkout code
uses: actions/checkout@v1

- name: lint
run: make lint

- name: test
run: make test

0 comments on commit 7ee146a

Please sign in to comment.