-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump version to 0.0.18 * Formatting of yaml files
- Loading branch information
1 parent
c640323
commit 1ecc013
Showing
4 changed files
with
185 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: cargo | ||
directory: / | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: cargo | ||
directory: / | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to GitHub Actions every weekday | ||
interval: "daily" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to GitHub Actions every weekday | ||
interval: "daily" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,209 +1,170 @@ | ||
{ | ||
"name": "CI", | ||
"on": { | ||
"push": { | ||
"branches": [ | ||
"trunk", | ||
"v*", | ||
"ci/*" | ||
] | ||
"on": | ||
{ | ||
"push": { "branches": ["trunk", "v*", "ci/*"] }, | ||
"pull_request": { "branches": ["trunk", "v*"] }, | ||
}, | ||
"pull_request": { | ||
"branches": [ | ||
"trunk", | ||
"v*" | ||
] | ||
} | ||
}, | ||
"jobs": { | ||
"check": { | ||
"name": "Check", | ||
"runs-on": "ubuntu-latest", | ||
"strategy": { | ||
"fail-fast": false, | ||
"matrix": { | ||
"rust": [ | ||
"stable", | ||
"beta", | ||
"nightly" | ||
# "1.55.0" TODO: Pick latest stable version when we release 2.0 | ||
] | ||
} | ||
}, | ||
"steps": [ | ||
{ | ||
"uses": "actions/checkout@v4", | ||
"name": "Checkout" | ||
}, | ||
{ | ||
"uses": "actions-rs/toolchain@v1", | ||
"with": { | ||
"profile": "minimal", | ||
"toolchain": "${{ matrix.rust }}", | ||
"override": true | ||
}, | ||
"name": "Install Rust ${{ matrix.rust }}" | ||
}, | ||
{ | ||
"uses": "actions-rs/cargo@v1", | ||
"with": { | ||
"command": "check", | ||
"args": "--all-features" | ||
}, | ||
"name": "Run `cargo check`" | ||
"jobs": | ||
{ | ||
"check": | ||
{ | ||
"name": "Check", | ||
"runs-on": "ubuntu-latest", | ||
"strategy": { "fail-fast": false, "matrix": { "rust": [ | ||
"stable", | ||
"beta", | ||
"nightly", | ||
# "1.55.0" TODO: Pick latest stable version when we release 2.0 | ||
] } }, | ||
"steps": | ||
[ | ||
{ "uses": "actions/checkout@v4", "name": "Checkout" }, | ||
{ | ||
"uses": "actions-rs/toolchain@v1", | ||
"with": | ||
{ | ||
"profile": "minimal", | ||
"toolchain": "${{ matrix.rust }}", | ||
"override": true, | ||
}, | ||
"name": "Install Rust ${{ matrix.rust }}", | ||
}, | ||
{ | ||
"uses": "actions-rs/cargo@v1", | ||
"with": { "command": "check", "args": "--all-features" }, | ||
"name": "Run `cargo check`", | ||
}, | ||
{ | ||
"uses": "actions-rs/cargo@v1", | ||
"with": { "command": "check", "args": "--examples" }, | ||
"name": "Check examples", | ||
}, | ||
], | ||
}, | ||
{ | ||
"uses": "actions-rs/cargo@v1", | ||
"with": { | ||
"command": "check", | ||
"args": "--examples" | ||
}, | ||
"name": "Check examples" | ||
} | ||
] | ||
}, | ||
"test": { | ||
"name": "Test", | ||
"runs-on": "ubuntu-latest", | ||
"strategy": { | ||
"matrix": { | ||
"rust": [ | ||
"stable", | ||
# "1.55.0" TODO: Pick latest stable version when we release 2.0 | ||
] | ||
} | ||
}, | ||
"steps": [ | ||
{ | ||
"uses": "actions/checkout@v4", | ||
"name": "Checkout" | ||
"test": | ||
{ | ||
"name": "Test", | ||
"runs-on": "ubuntu-latest", | ||
"strategy": { "matrix": { "rust": [ | ||
"stable", | ||
# "1.55.0" TODO: Pick latest stable version when we release 2.0 | ||
] } }, | ||
"steps": | ||
[ | ||
{ "uses": "actions/checkout@v4", "name": "Checkout" }, | ||
{ | ||
"uses": "actions-rs/toolchain@v1", | ||
"with": | ||
{ | ||
"profile": "minimal", | ||
"toolchain": "${{ matrix.rust }}", | ||
"override": true, | ||
}, | ||
"name": "Install Rust ${{ matrix.rust }}", | ||
}, | ||
{ | ||
"run": "cargo test --all --features proc-macro2", | ||
"name": "Run `cargo test`", | ||
"env": { "RUSTFLAGS": "-D warnings" }, | ||
}, | ||
], | ||
}, | ||
{ | ||
"uses": "actions-rs/toolchain@v1", | ||
"with": { | ||
"profile": "minimal", | ||
"toolchain": "${{ matrix.rust }}", | ||
"override": true | ||
}, | ||
"name": "Install Rust ${{ matrix.rust }}" | ||
"test_project": | ||
{ | ||
"name": "Test Project", | ||
"runs-on": "ubuntu-latest", | ||
"strategy": { "matrix": { "rust": [ | ||
"stable", | ||
# "1.55.0" TODO: Pick latest stable version when we release 0.1 | ||
] } }, | ||
"steps": | ||
[ | ||
{ "uses": "actions/checkout@v4", "name": "Checkout" }, | ||
{ | ||
"uses": "actions-rs/toolchain@v1", | ||
"with": | ||
{ | ||
"profile": "minimal", | ||
"toolchain": "${{ matrix.rust }}", | ||
"override": true, | ||
}, | ||
"name": "Install Rust ${{ matrix.rust }}", | ||
}, | ||
{ | ||
"run": "cd test && cargo run", | ||
"name": "Run the test project", | ||
"env": { "RUSTFLAGS": "-D warnings" }, | ||
}, | ||
], | ||
}, | ||
{ | ||
"run": "cargo test --all --features proc-macro2", | ||
"name": "Run `cargo test`", | ||
"env": { | ||
"RUSTFLAGS": "-D warnings" | ||
} | ||
} | ||
] | ||
}, | ||
"test_project": { | ||
"name": "Test Project", | ||
"runs-on": "ubuntu-latest", | ||
"strategy": { | ||
"matrix": { | ||
"rust": [ | ||
"stable", | ||
# "1.55.0" TODO: Pick latest stable version when we release 0.1 | ||
] | ||
} | ||
}, | ||
"steps": [ | ||
{ | ||
"uses": "actions/checkout@v4", | ||
"name": "Checkout" | ||
"lints": | ||
{ | ||
"name": "Lints", | ||
"runs-on": "ubuntu-latest", | ||
"steps": | ||
[ | ||
{ "uses": "actions/checkout@v4", "name": "Checkout" }, | ||
{ | ||
"uses": "actions-rs/toolchain@v1", | ||
"with": | ||
{ | ||
"profile": "minimal", | ||
"toolchain": "stable", | ||
"override": true, | ||
"components": "rustfmt, clippy", | ||
}, | ||
"name": "Install Rust stable", | ||
}, | ||
{ | ||
"uses": "actions-rs/cargo@v1", | ||
"with": { "command": "fmt", "args": "--all -- --check" }, | ||
"name": "Run `cargo fmt`", | ||
}, | ||
{ | ||
"uses": "actions-rs/cargo@v1", | ||
"with": | ||
{ | ||
"command": "clippy", | ||
"args": "--all-features -- -D warnings", | ||
}, | ||
"name": "Run `cargo clippy`", | ||
}, | ||
], | ||
}, | ||
{ | ||
"uses": "actions-rs/toolchain@v1", | ||
"with": { | ||
"profile": "minimal", | ||
"toolchain": "${{ matrix.rust }}", | ||
"override": true | ||
}, | ||
"name": "Install Rust ${{ matrix.rust }}" | ||
"coverage": | ||
{ | ||
"name": "Code Coverage", | ||
"runs-on": "ubuntu-latest", | ||
"steps": | ||
[ | ||
{ "uses": "actions/checkout@v4", "name": "Checkout" }, | ||
{ | ||
"uses": "actions-rs/toolchain@v1", | ||
"with": | ||
{ | ||
"profile": "minimal", | ||
"toolchain": "nightly", | ||
"override": true, | ||
}, | ||
"name": "Install Rust nightly", | ||
}, | ||
{ | ||
"name": "Run cargo-tarpaulin", | ||
"uses": "actions-rs/[email protected]", | ||
"with": { "version": "0.18.2", "args": "--all" }, | ||
}, | ||
{ | ||
"name": "Upload to codecov.io", | ||
"uses": "codecov/codecov-action@v3", | ||
}, | ||
{ | ||
"name": "Archive code coverage results", | ||
"uses": "actions/upload-artifact@v3", | ||
"with": | ||
{ "name": "code-coverage-report", "path": "cobertura.xml" }, | ||
}, | ||
], | ||
}, | ||
{ | ||
"run": "cd test && cargo run", | ||
"name": "Run the test project", | ||
"env": { | ||
"RUSTFLAGS": "-D warnings" | ||
} | ||
} | ||
] | ||
}, | ||
"lints": { | ||
"name": "Lints", | ||
"runs-on": "ubuntu-latest", | ||
"steps": [ | ||
{ | ||
"uses": "actions/checkout@v4", | ||
"name": "Checkout" | ||
}, | ||
{ | ||
"uses": "actions-rs/toolchain@v1", | ||
"with": { | ||
"profile": "minimal", | ||
"toolchain": "stable", | ||
"override": true, | ||
"components": "rustfmt, clippy" | ||
}, | ||
"name": "Install Rust stable" | ||
}, | ||
{ | ||
"uses": "actions-rs/cargo@v1", | ||
"with": { | ||
"command": "fmt", | ||
"args": "--all -- --check" | ||
}, | ||
"name": "Run `cargo fmt`" | ||
}, | ||
{ | ||
"uses": "actions-rs/cargo@v1", | ||
"with": { | ||
"command": "clippy", | ||
"args": "--all-features -- -D warnings" | ||
}, | ||
"name": "Run `cargo clippy`" | ||
} | ||
] | ||
}, | ||
"coverage": { | ||
"name": "Code Coverage", | ||
"runs-on": "ubuntu-latest", | ||
"steps": [ | ||
{ | ||
"uses": "actions/checkout@v4", | ||
"name": "Checkout" | ||
}, | ||
{ | ||
"uses": "actions-rs/toolchain@v1", | ||
"with": { | ||
"profile": "minimal", | ||
"toolchain": "nightly", | ||
"override": true | ||
}, | ||
"name": "Install Rust nightly" | ||
}, | ||
{ | ||
"name": "Run cargo-tarpaulin", | ||
"uses": "actions-rs/[email protected]", | ||
"with": { | ||
"version": "0.18.2", | ||
"args": "--all" | ||
} | ||
}, | ||
{ | ||
"name": "Upload to codecov.io", | ||
"uses": "codecov/codecov-action@v3" | ||
}, | ||
{ | ||
"name": "Archive code coverage results", | ||
"uses": "actions/upload-artifact@v3", | ||
"with": { | ||
"name": "code-coverage-report", | ||
"path": "cobertura.xml" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.