Browse Source

Merge pull request #99 from dora-rs/ci-features

Check `tracing` and `metrics` features on CI
tags/v0.0.0-test-pr-120
Philipp Oppermann GitHub 3 years ago
parent
commit
6d1be3f6f9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions
  1. +0
    -2
      .github/workflows/ci-python.yml
  2. +10
    -0
      .github/workflows/ci.yml

+ 0
- 2
.github/workflows/ci-python.yml View File

@@ -7,8 +7,6 @@ on:
- apis/python/**
- binaries/runtime/**
pull_request:
branches:
- main

jobs:
examples:


+ 10
- 0
.github/workflows/ci.yml View File

@@ -131,6 +131,16 @@ jobs:
with:
command: clippy
args: --all
- name: "Clippy (tracing feature)"
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all --features tracing
- name: "Clippy (metrics feature)"
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all --features metrics

rustfmt:
name: "Formatting"


Loading…
Cancel
Save