Skip to content

chore: Add CI

chore: Add CI #1

Workflow file for this run

name: Lints and Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
container: backpackapp/build:v0.29.0
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Cargo tests
run: cargo test
env:
RUST_BACKTRACE: 1
- name: Anchor tests
run: anchor test
lints:
name: Lints
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run cargo clippy
run: cargo clippy --all-targets -- -D warnings