diff options
| author | Fuwn <[email protected]> | 2024-05-23 17:42:42 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-23 17:42:42 -0700 |
| commit | 84470700f63cb565d2855a7a426eacc5d24c0cb5 (patch) | |
| tree | 3d8462d778fdf3d9f589f60387c57104a911e926 | |
| parent | docs: update documentation (diff) | |
| download | seiwm-84470700f63cb565d2855a7a426eacc5d24c0cb5.tar.xz seiwm-84470700f63cb565d2855a7a426eacc5d24c0cb5.zip | |
ci(github): integration workflow
| -rw-r--r-- | .github/workflows/check.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000..40c7f0d --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,17 @@ +name: Check +on: [push, pull_request] +jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Update Package Lists + run: sudo apt-get update + - name: Install Dependencies + run: | + sudo apt-get install -y build-essential libimlib2-dev libxft-dev \ + libfribidi-dev libxinerama-dev libx11-xcb-dev libxcb-res0-dev \ + ninja-build + - name: Test Compilation + run: ninja |