Skip to content

Commit

Permalink
ci: get test framework during workflow
Browse files Browse the repository at this point in the history
I'm currently keeping the test framework source
code that I use (Unity) in my test
directory. Remove it and just clone it to where I
need it during CI.
  • Loading branch information
mcauley-penney committed Aug 5, 2023
1 parent 5c8bae6 commit b771285
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4,299 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clone mmv
uses: actions/checkout@v3

- name: Clone test framework
uses: actions/checkout@v3
with:
repository: ThrowTheSwitch/Unity
path: Unity

- name: Set up directory
run: mv ./Unity/src/* test

- name: Build test executables
run: make test
Expand Down
Loading

0 comments on commit b771285

Please sign in to comment.