try to migrate from Travis CI to GitHub Actions
[pcsx_rearmed.git] / .github / workflows / ci-linux.yml
CommitLineData
8478ca41 1name: CI (Linux)
2on: [push, pull_request]
3jobs:
4 build-linux:
5 runs-on: ubuntu-latest
6 steps:
7 - uses: actions/checkout@v2
8 - name: Install dependencies
9 run: |
10 sudo apt-get update -qq
11 sudo apt-get install -y libsdl1.2-dev libasound2-dev libpng-dev libz-dev
12 - name: configure
13 run: ./configure
14 - name: make
15 run: make