Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Build

permissions:
contents: read

on:
push:
pull_request:

jobs:
build:
Expand Down
18 changes: 0 additions & 18 deletions .github/workflows/fmt.yml

This file was deleted.

7 changes: 2 additions & 5 deletions .github/workflows/license-check.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
name: license-check

on:
pull_request:
push:
branch:
- main

jobs:
license:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@master
- name: Check License Header
uses: apache/skywalking-eyes/header@61275cc80d0798a405cb070f7d3a8aaf7cf2c2c1
uses: apache/skywalking-eyes/header@55373684d1b70e5f8fd9fc8ec114a89ad11a56a3
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: lint

permissions:
contents: read

on:
push:

jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: cargo fmt --all -- --check
run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
Comment thread
augustuswm marked this conversation as resolved.
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: cargo clippy -- -Dwarnings
run: cargo clippy -- -Dwarnings
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Test

permissions:
contents: read

on:
push:
pull_request:

jobs:
test:
Expand Down
Loading
Loading