Skip to content

Commit

Permalink
add github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
theavege committed Dec 22, 2024
1 parent 62b56dd commit 9d9090d
Show file tree
Hide file tree
Showing 76 changed files with 1,702 additions and 2,436 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
34 changes: 34 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: Make

on:
push:
branches:
- "**"
pull_request:
branches:
- master
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 120
strategy:
matrix:
os:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true

- name: Build on Linux
if: runner.os == 'Linux'
shell: bash
run: bash make.sh build
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
bin/*
lib/*
**/backup/
**/lib/
SDL2-for-Pascal/*
*.compiled
*.o
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "use/SDL2-for-Pascal"]
path = use/SDL2-for-Pascal
url = [email protected]:PascalGameDevelopment/SDL2-for-Pascal.git
26 changes: 0 additions & 26 deletions demo01/demo01.ctps

This file was deleted.

57 changes: 0 additions & 57 deletions demo01/demo01.lpi

This file was deleted.

67 changes: 0 additions & 67 deletions demo01/demo01.lps

This file was deleted.

49 changes: 0 additions & 49 deletions demo02/demo02.ctps

This file was deleted.

58 changes: 0 additions & 58 deletions demo02/demo02.lpi

This file was deleted.

53 changes: 0 additions & 53 deletions demo02/demo02.lps

This file was deleted.

Loading

0 comments on commit 9d9090d

Please sign in to comment.