Skip to content

Commit

Permalink
add tests to separate job
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey-Sagaydak committed Apr 27, 2024
1 parent b207721 commit 59bd888
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,27 @@ jobs:
name: server
path: ./server/http-server.deb

test:
needs: build
runs-on: ubuntu-latest

steps:
- name: Download client artifact
uses: actions/download-artifact@v3
with:
name: client

- name: Install client
run: sudo dpkg -i ./client/http-client.deb

- name: Test client
run: libhv-client --help

- name: Download server artifact
uses: actions/download-artifact@v3
with:
name: server

- name: Install server
run: sudo dpkg -i ./server/http-server.deb

Expand Down

0 comments on commit 59bd888

Please sign in to comment.