Skip to content

Commit

Permalink
Add Github Workflows support
Browse files Browse the repository at this point in the history
  • Loading branch information
janoc committed Dec 13, 2023
1 parent f738d5f commit d36ba1d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/CI.yml
@@ -0,0 +1,27 @@
name: CI
on:
push:
branches:
- master
pull_request:
release:
types:
- created

jobs:
build-linux:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: "actions/checkout@v3"
- name: Install dependencies
if: matrix.os == 'ubuntu-latest' || matrix.os == 'debian-latest'
run: |
sudo apt-get update
sudo apt-get -y install libsdl1.2-dev
- name: Build
run: |
make

0 comments on commit d36ba1d

Please sign in to comment.