@@ -18,24 +18,6 @@ pub fn generate_ci_workflow() {
1818 . add_step ( Step :: toolchain ( ) . add_stable ( ) )
1919 . add_step ( Step :: new ( "Cargo Test" ) . run ( "cargo test --all-features --workspace" ) ) ;
2020
21- // Create a basic lint job for CI
22- let lint_job = Job :: new ( "Lint" )
23- . permissions ( Permissions :: default ( ) . contents ( Level :: Read ) )
24- . add_step ( Step :: new ( "Checkout Code" ) . uses ( "actions" , "checkout" , "v6" ) )
25- . add_step (
26- Step :: new ( "Setup Protobuf Compiler" )
27- . uses ( "arduino" , "setup-protoc" , "v3" )
28- . with ( ( "repo-token" , "${{ secrets.GITHUB_TOKEN }}" ) ) ,
29- )
30- . add_step (
31- Step :: toolchain ( )
32- . add_nightly ( )
33- . add_component ( Component :: Clippy )
34- . add_component ( Component :: Rustfmt ) ,
35- )
36- . add_step ( Step :: new ( "Cargo Fmt" ) . run ( jobs:: fmt_cmd ( false ) ) )
37- . add_step ( Step :: new ( "Cargo Clippy" ) . run ( jobs:: clippy_cmd ( false ) ) ) ;
38-
3921 let draft_release_job = jobs:: create_draft_release_job ( "build" ) ;
4022 let draft_release_pr_job = jobs:: create_draft_release_pr_job ( ) ;
4123 let events = Event :: default ( )
@@ -78,7 +60,6 @@ pub fn generate_ci_workflow() {
7860 . concurrency ( Concurrency :: default ( ) . group ( "${{ github.workflow }}-${{ github.ref }}" ) )
7961 . add_env ( ( "OPENROUTER_API_KEY" , "${{secrets.OPENROUTER_API_KEY}}" ) )
8062 . add_job ( "build" , build_job)
81- . add_job ( "lint" , lint_job)
8263 . add_job ( "draft_release" , draft_release_job)
8364 . add_job ( "draft_release_pr" , draft_release_pr_job)
8465 . add_job ( "build_release" , build_release_job)
0 commit comments