make changes to release and actions

This commit is contained in:
Corwin Kuiper 2022-01-08 12:05:41 +00:00
parent 5b7e1a760d
commit fa03d64b59
2 changed files with 9 additions and 1 deletions

View file

@ -45,7 +45,12 @@ jobs:
run: cargo clippy --verbose run: cargo clippy --verbose
- name: Run Clippy on agb macros - name: Run Clippy on agb macros
working-directory: agb-macros working-directory: agb-macros
- name: Run Clippy on agb fixnum
working-directory: agb-fixnum
run: cargo clippy --verbose run: cargo clippy --verbose
- name: Run Tests for fixnum
working-directory: agb-fixnum
run: cargo test --verbose
- name: Run Tests for agb in debug mode - name: Run Tests for agb in debug mode
working-directory: agb working-directory: agb
run: cargo test --verbose run: cargo test --verbose

View file

@ -47,7 +47,10 @@ case "$PROJECT" in
DIRECTORY="mgba-test-runner" DIRECTORY="mgba-test-runner"
TAGNAME="mgba-test-runner/v$VERSION" TAGNAME="mgba-test-runner/v$VERSION"
;; ;;
agb-fixnum)
DIRECTORY="agb-fixnum"
TAGNAME="agb-fixnum/v$VERSION"
;;
*) *)
echo "Unknown project name $PROJECT" echo "Unknown project name $PROJECT"
exit 1 exit 1