Skip to content

[ci] Migrate CI from GitLab to GitHub #103

[ci] Migrate CI from GitLab to GitHub

[ci] Migrate CI from GitLab to GitHub #103

Workflow file for this run

name: Backend CI - cargo fmt
on:
push:
branches:
- master
paths:
- '.github/workflows/backend*'
- 'backend/**'
- '!frontend/**'
pull_request:
paths:
- '.github/workflows/backend*'
- 'backend/**'
- '!frontend/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
defaults:
run:
working-directory: ./backend
jobs:
fmt:
name: Run rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy, rustfmt
- name: Cargo fmt
run: cargo fmt --verbose --all -- --check