Skip to content

build(deps): bump regex from 1.12.3 to 1.12.4 #1204

build(deps): bump regex from 1.12.3 to 1.12.4

build(deps): bump regex from 1.12.3 to 1.12.4 #1204

Workflow file for this run

name: E2E Tests
on:
push:
branches: ["nightly"]
pull_request:
branches: ["nightly"]
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/nightly' }}
env:
CARGO_TERM_COLOR: always
jobs:
ubuntu_e2e_test:
strategy:
fail-fast: true
runs-on: ubuntu-latest
steps:
# Clone project
- uses: actions/checkout@v6
# Install buildx
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v4
# Set buildx cache
- name: Cache register
uses: actions/cache@v5
with:
path: ~/buildx-cache
key: buildx-cache
# Install cargo make
- uses: davidB/rust-cargo-make@v1
- name: Install bats
run: |
sudo apt-get update
sudo apt-get install -y bats
# Build nightly image and install nanocl
- name: Prepare CI
run: |
chmod +x ./tests/e2e_prepare_ci.sh
./tests/e2e_prepare_ci.sh
# Run E2E tests
- name: E2E
run: |
bats --verbose-run ./tests/e2e.bats