Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

ci: ci -> workflows

ci: ci -> workflows #1

Workflow file for this run

name: "Build integration tests image"
on: [push]
jobs:
build:
runs-on: [self-hosted, linux]
steps:
- uses: actions/checkout@v4
- name: Clippy
run: cargo clippy --all-features --tests
- name: Build
run: ./build.sh
format:
runs-on: [self-hosted, linux]
needs: build
steps:
- name: Check format
run: cargo fmt --check