summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/FUNDING.yml1
-rw-r--r--.github/workflows/integration.yml21
2 files changed, 22 insertions, 0 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 00000000..4a3aad7c
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1 @@
+ko_fi: hecrj_
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
new file mode 100644
index 00000000..f574e930
--- /dev/null
+++ b/.github/workflows/integration.yml
@@ -0,0 +1,21 @@
+name: Integration
+on: [push]
+jobs:
+ test:
+ runs-on: ${{ matrix.os }}
+ strategy:
+ matrix:
+ os: [ubuntu-latest, windows-latest, macOS-latest]
+ rust: [stable, beta]
+ steps:
+ - uses: hecrj/setup-rust-action@v1
+ with:
+ rust-version: ${{ matrix.rust }}
+ - name: Install libinput
+ if: matrix.os == 'ubuntu-latest'
+ run: |
+ sudo apt-get -qq update
+ sudo apt-get install -y libasound2-dev libudev-dev
+ - uses: actions/checkout@master
+ - name: Run tests
+ run: cargo test --verbose --all-features