mirror of
https://github.com/nushell/nushell.git
synced 2025-03-13 15:08:43 +01:00
added some explanation and a continue-on-error
This commit is contained in:
parent
3bec2fedf1
commit
c545d65d05
13
.github/workflows/beta-test.yml
vendored
13
.github/workflows/beta-test.yml
vendored
@ -1,11 +1,16 @@
|
|||||||
|
name: Test on Beta Toolchain
|
||||||
|
# This workflow is made to run our tests on the beta toolchain to validate that
|
||||||
|
# the beta toolchain works.
|
||||||
|
# We do not intend to test here that we are working correctly but rather that
|
||||||
|
# the beta toolchain works correctly.
|
||||||
|
# The ci.yml handles our actual testing with our guarantees.
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
# push:
|
# push:
|
||||||
# branches:
|
# branches:
|
||||||
# - main
|
# - main
|
||||||
|
|
||||||
name: Test on Beta Toolchain
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
NUSHELL_CARGO_PROFILE: ci
|
NUSHELL_CARGO_PROFILE: ci
|
||||||
NU_LOG_LEVEL: DEBUG
|
NU_LOG_LEVEL: DEBUG
|
||||||
@ -16,6 +21,10 @@ concurrency:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-test:
|
build-and-test:
|
||||||
|
# this job is more for testing the beta toolchain and not our tests, so if
|
||||||
|
# this fails but the tests of the regular ci pass, then this is fine
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
|
Loading…
Reference in New Issue
Block a user