Skip to content

Commit

Permalink
ci: add test workflow, update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
roosta committed Nov 11, 2023
1 parent a80e19b commit 93b2290
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: 'test'
on:
push:
branches:
- refactor/wm_properties

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install test dependencies
run: sudo apt-get install -y i3-wm gcc gpick xterm

- name: Setup test environment
run: script/test_env.sh

- name: Run tests
run: cargo test

0 comments on commit 93b2290

Please sign in to comment.