WIP test ext4 #221
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build 🔨 and Release 🚀 | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
jobs: | |
system-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup bats 🦇 | |
uses: bats-core/[email protected] | |
with: | |
bats-version: 1.11.0 | |
# - name: Download all workflow run artifacts | |
# uses: actions/download-artifact@v3 | |
- name: Download | |
shell: bash | |
run: | | |
curl -fLsS https://github.com/reecetech/ebs-bootstrap/releases/download/v1.0.7/ebs-bootstrap-linux-x86_64 \ | |
-o ebs-bootstrap | |
chmod +x ebs-bootstrap | |
- name: Setup Tests | |
run: bats bats/setup.bats | |
- name: Test ext4 | |
run: bats bats/ext4.bats |