Skip to content

Commit

Permalink
Test run
Browse files Browse the repository at this point in the history
  • Loading branch information
cradle8810 committed Apr 23, 2024
1 parent 2a168e1 commit 775a958
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 14 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Workflows

on: [push, pull_request]

jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Shellcheck Version Check
run: shellcheck -V
- name: Run ShellCheck
run: shellcheck mkRAMDisk.sh

mount-and-test:
runs-on: macos-14
steps:
- name: checkout
uses: actions/checkout@v4

- name: Goss downloaded cache
uses: actions/cache/restore@v4
with:
path: /tmp/goss
key: mkramdisk-goss

- name: Download Goss
run: |
curl -L https://github.com/goss-org/goss/releases/download/v0.4.6/goss-darwin-arm64 \
-o /tmp/goss && \
chmod +x /tmp/goss
- name: Store goss cache
uses: actions/cache/save@v4
with:
path: /tmp/dgoss
key: mkramdisk-goss

- name: Run mkRAMDisk.sh
run: |
./mkRAMDisk.sh
- name: Run goss
run: |
/tmp/goss
14 changes: 0 additions & 14 deletions .github/workflows/lint.yml

This file was deleted.

0 comments on commit 775a958

Please sign in to comment.