Skip to content

Commit

Permalink
Update bash.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
e-marchand authored Jun 6, 2024
1 parent f087d54 commit 27b3d06
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/bash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,27 @@ jobs:
permissions: write-all
steps:
- uses: actions/checkout@v3
- name: "etestzet"
run: |
echo "::group::test"
echo "::error file=Project/Sources/Methods/main.4dm,line=11::test message."
echo "::endgroup::"
- name: "Download latest tool4d release and expand"
run: |
curl https://resources-download.4d.com/release/20.x/20.0/latest/mac/tool4d_v20.0_mac_x86.tar.xz -o tool4d.tar.xz -sL
tar xvzf tool4d.tar.xz
- name: "Run Project Unit Tests"
run: |
./tool4d.app/Contents/MacOS/tool4d --project ${{ github.workspace }}/Project/tool4d-action-test.4DProject --dataless --skip-onstartup --startup-method "main"
Unit-tests-on-ubuntu:
name: Unit Tests on ubuntu
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3
- name: "Download latest tool4d release and expand"
run: |
curl https://resources-download.4d.com/release/20.x/20.0/latest/mac/tool4d_v20.0_mac_x86.tar.xz -o tool4d.tar.xz -sL
tar xvzf tool4d.tar.xz
- name: "Run Project Unit Tests"
run: |
./bin/tool4d --project ${{ github.workspace }}/Project/tool4d-action-test.4DProject --dataless --skip-onstartup --startup-method "main"

0 comments on commit 27b3d06

Please sign in to comment.