Skip to content

Commit

Permalink
feat: introduce ci
Browse files Browse the repository at this point in the history
this is requirement of the lab
  • Loading branch information
owl-from-hogvarts committed May 9, 2024
1 parent aa177f4 commit 5ddd6ef
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/lint-and-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Rust

on:
push

env:
CARGO_TERM_COLOR: always

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Install libraries
run: |
python -m pip install --upgrade pip
pip install pytest-golden
# Testing file builds project
# I would rather put build as separate step or a job
# But building wihtin tests is just easier by alot
- name: Run tests
run: |
pytest
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Run basic checks
run: cargo check
- name: Run linter
run: cargo clippy

0 comments on commit 5ddd6ef

Please sign in to comment.