Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug test failure that only happens in GHA #9

Merged
merged 12 commits into from
Oct 5, 2023
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
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
Loading