mirror of
https://github.com/italicsjenga/muda.git
synced 2025-01-09 19:31:32 +11:00
ci: run on all platforms, install sys deps
This commit is contained in:
parent
c7755a01b9
commit
1f341d1e4e
13
.github/workflows/test.yml
vendored
13
.github/workflows/test.yml
vendored
|
@ -19,11 +19,22 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: ['windows-latest', 'macos-latest', 'ubuntu-latest']
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: install system deps
|
||||
if: contains(matrix.os, 'ubuntu')
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y libgtk-3-dev libxdo-dev libayatana-appindicator3-dev
|
||||
|
||||
- name: install stable
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue