Skip to content

[build] Refactor Repository Structure #5

[build] Refactor Repository Structure

[build] Refactor Repository Structure #5

Workflow file for this run

name: "Integration Tests"
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened, ready_for_review]
defaults:
run:
shell: bash
# Cancel previous running actions for the same PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
unit-tests:
if: github.event.pull_request.draft == false
runs-on: ubuntu-24.04
steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: "Run Rust unit tests"
run: |
source ./scripts/workon.sh
# TODO: move to accli dev test
cargo test
checks:
if: github.event.pull_request.draft == false
runs-on: ubuntu-24.04
steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: "Install clang-format"
run: sudo apt install -y clang-format
- name: "Run formatting checks"
run: |
source ./scripts/workon.sh
accli dev format-code