Skip to content

Commit

Permalink
rebase: Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sbates130272 committed Nov 14, 2023
1 parent 98f06b9 commit bf6c9af
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: qemu-minimal-smoke-test

on:
pull_request:
branches: [ master ]

jobs:
ubuntu-smoke-test:
name: ubuntu-smoke-test
runs-on: ubuntu-latest
steps:
- name: Check out code using action/checkout
uses: actions/[email protected]
- name: Install fio via the apt package manager
run: sudo apt update && sudo apt install -y fio
- name: Run a qemu-based gen-vm smoke-test
run: echo "add stuff here stephen!"
19 changes: 19 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: qemu-minimal-spell-check

on:
pull_request:
branches: [ master ]
paths:
- '**.md'
- '.wordlist.txt'
- '.spellcheck.yaml'

jobs:
ubuntu-spell-check:
name: ubuntu-spell-check
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/[email protected]
- name: GitHub Spellcheck Action
uses: rojopolis/spellcheck-github-actions@v0
16 changes: 16 additions & 0 deletions .spellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
spellchecker: aspell
matrix:
- name: markdown
aspell:
lang: en
sources:
- '**/*.md'
pipeline:
- pyspelling.filters.markdown
dictionary:
wordlists:
- .wordlist.txt
output: wordlist.dic
encoding: utf-8
default_encoding: utf-8
expect_match: true
Empty file added .wordlist.txt
Empty file.

0 comments on commit bf6c9af

Please sign in to comment.