Skip to content
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
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
strategy:
matrix:
include:
- operating-system: ubuntu-20.04
- operating-system: ubuntu-22.04
targets: x86_64-unknown-linux-gnu
- operating-system: ubuntu-20.04
- operating-system: ubuntu-22.04
targets: x86_64-unknown-linux-musl
- operating-system: ubuntu-20.04
- operating-system: ubuntu-22.04
targets: aarch64-unknown-linux-gnu
- operating-system: ubuntu-20.04
- operating-system: ubuntu-22.04
targets: aarch64-unknown-linux-musl
- operating-system: windows-2019
targets: x86_64-pc-windows-msvc
Expand Down Expand Up @@ -108,6 +108,7 @@ jobs:
working-directory: rust/pact_ffi

- name: Upload Release Assets
if: ${{ github.event_name == 'release' }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions rust/pact_models/src/generators/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ use crate::path_exp::DocPath;
#[cfg(feature = "datetime")] mod date_expression_parser;
#[cfg(feature = "datetime")] mod time_expression_parser;
#[cfg(feature = "form_urlencoded")] pub mod form_urlencoded;
#[cfg(feature = "xml")] pub mod xml;

/// Trait to represent matching logic to find a matching variant for the Array Contains generator
pub trait VariantMatcher: Debug {
Expand Down
Loading