try to migrate from Travis CI to GitHub Actions
[pcsx_rearmed.git] / .github / workflows / ci-linux.yml
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml
new file mode 100644 (file)
index 0000000..511aa56
--- /dev/null
@@ -0,0 +1,15 @@
+name: CI (Linux)
+on: [push, pull_request]
+jobs:
+  build-linux:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v2
+    - name: Install dependencies
+      run: |
+        sudo apt-get update -qq
+        sudo apt-get install -y libsdl1.2-dev libasound2-dev libpng-dev libz-dev
+    - name: configure
+      run: ./configure
+    - name: make
+      run: make