Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fb098cfd7f | ||
|
|
21f8a97962 | ||
|
|
82fd915a7b | ||
|
|
8110225bb8 | ||
|
|
2811f8f89b | ||
|
|
a00ac02f25 |
23
.github/workflows/integration-test.yml
vendored
Normal file
23
.github/workflows/integration-test.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
name: Integration test for new action version
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "master" ]
|
||||||
|
pull_request:
|
||||||
|
types: [opened, reopened, synchronize]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
it:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Verify that Docker image can be built
|
||||||
|
run: |
|
||||||
|
docker build .
|
||||||
|
- name: Run tests of subdir `integration-test`
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
args: |
|
||||||
|
cargo fmt --manifest-path integration-test/Cargo.toml -- --check \
|
||||||
|
&& cargo clippy --manifest-path integration-test/Cargo.toml -- -Dwarnings \
|
||||||
|
&& cargo test --manifest-path integration-test/Cargo.toml
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM rust:1.70.0
|
FROM rust:1.72.0
|
||||||
|
|
||||||
LABEL "com.github.actions.name"="Rust Action Box"
|
LABEL "com.github.actions.name"="Rust Action Box"
|
||||||
LABEL "com.github.actions.description"="'Silverbullet' for a quickstart Rust CI based upon Github Actions"
|
LABEL "com.github.actions.description"="'Silverbullet' for a quickstart Rust CI based upon Github Actions"
|
||||||
|
|||||||
@@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
'Silverbullet' for a quickstart Rust CI based upon [Github Actions](https://developer.github.com/actions/)
|
'Silverbullet' for a quickstart Rust CI based upon [Github Actions](https://developer.github.com/actions/)
|
||||||
|
|
||||||
[](https://conventionalcommits.org) [](https://blog.rust-lang.org/2023/06/01/Rust-1.70.0.html)
|
[](https://conventionalcommits.org) [](https://blog.rust-lang.org/2023/08/24/Rust-1.72.0.html)
|
||||||
|
|
||||||
*What's inside the "box":*
|
*What's inside the "box":*
|
||||||
|
|
||||||
* Rust 1.70.0
|
* Rust 1.72.0
|
||||||
* Rustfmt
|
* Rustfmt
|
||||||
* Clippy
|
* Clippy
|
||||||
* Cargo Release
|
* Cargo Release
|
||||||
|
|||||||
Reference in New Issue
Block a user