Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(bats): verbose run #1056

Open
wants to merge 2 commits into
base: nightly
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Clippy
strategy:
fail-fast: true
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: Checkout repository code
Expand All @@ -41,7 +41,7 @@ jobs:

fmt:
name: Fmt
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft_nightly_nanocl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:

jobs:
release_image:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: rust:1.82.0-alpine3.20

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft_stable_nanocl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:

jobs:
release_image:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container: rust:1.82.0-alpine3.20

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
ubuntu_e2e_test:
strategy:
fail-fast: true
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
# Clone project
Expand Down Expand Up @@ -59,4 +59,4 @@ jobs:
# Run E2E tests
- name: E2E
run: |
bats ./tests/e2e.bats
bats --verbose-run ./tests/e2e.bats
2 changes: 1 addition & 1 deletion .github/workflows/publish_nightly_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:

jobs:
release_image:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_stable_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:

jobs:
release_image:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
ubuntu_test:
strategy:
fail-fast: true
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
# Clone project
Expand Down