We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9409b49 commit 07dccd4Copy full SHA for 07dccd4
README.md
@@ -1327,8 +1327,9 @@ jobs:
1327
run: |
1328
python -m pip install --upgrade pip
1329
pip install ruff
1330
+ # Include `--format=github` to enable automatic inline annotations.
1331
- name: Run Ruff
- run: ruff .
1332
+ run: ruff --format=github .
1333
```
1334
1335
## FAQ
src/settings/types.rs
@@ -164,17 +164,6 @@ pub enum SerializationFormat {
164
165
impl Default for SerializationFormat {
166
fn default() -> Self {
167
- if let Ok(github_actions) = env::var("GITHUB_ACTIONS") {
168
- if github_actions == "true" {
169
- return Self::Github;
170
- }
171
172
-
173
- if let Ok(gitlab_ci) = env::var("GITLAB_CI") {
174
- if gitlab_ci == "true" {
175
- return Self::Gitlab;
176
177
178
Self::Text
179
}
180
0 commit comments