fix ci workflow
This commit is contained in:
parent
2a2f46a5ff
commit
57e1e7abbf
2 changed files with 27 additions and 1 deletions
24
.forgejo/workflows/check_latest_dependencies.yml
Normal file
24
.forgejo/workflows/check_latest_dependencies.yml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
name: Verify Latest Dependencies
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
latest_deps:
|
||||||
|
name: Verify Latest Dependencies
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: ubuntu-latest
|
||||||
|
continue-on-error: true
|
||||||
|
env:
|
||||||
|
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- run: rustup update stable && rustup default stable
|
||||||
|
- run: cargo update --verbose
|
||||||
|
- run: cargo build --verbose
|
||||||
|
- run: cargo test --verbose
|
|
@ -10,7 +10,9 @@ env:
|
||||||
jobs:
|
jobs:
|
||||||
build_and_test:
|
build_and_test:
|
||||||
name: wxbox - latest
|
name: wxbox - latest
|
||||||
runs-on: ubuntu-latest
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
toolchain:
|
toolchain:
|
||||||
|
|
Loading…
Add table
Reference in a new issue