mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 05:24:49 +00:00
18 lines
305 B
YAML
18 lines
305 B
YAML
name: Installation test
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
install:
|
|
name: Test installation on Ubuntu 22.04LTS
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: install
|
|
run: |
|
|
pwd
|
|
cd cvw
|
|
sudo ./bin/wally-tool-chain-install
|
|
|