Skip to content

Commit

Permalink
Debug test failure that only happens in GHA (#9)
Browse files Browse the repository at this point in the history
* Set `CLICOLOR_FORCE` env var
* Fix workflow triggers
* Update `colored` version
  • Loading branch information
jdidion authored Oct 5, 2023
1 parent 939b4f8 commit bfe2f07
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: build and test

on: [push, pull_request]
on:
push:
pull_request:
types: [opened, reopened]

env:
env:
CLICOLOR_FORCE: true
CARGO_TERM_COLOR: always

jobs:
Expand Down
6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
[workspace]
members = [
"pest-test",
"pest-test-gen"
]
resolver = "2"
members = ["pest-test", "pest-test-gen"]
2 changes: 1 addition & 1 deletion pest-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "MIT"
readme = "../README.md"

[dependencies]
colored = "2.0.0"
colored = "2.0.4"
pest = "2.5.2"
pest_derive = "2.5.2"
snailquote = "0.3.1"
Expand Down

0 comments on commit bfe2f07

Please sign in to comment.