mirror of
https://github.com/OpenArena/gamecode
synced 2026-08-20 18:23:03 -04:00
* Use Github actions instead of Travis. Travis has suffered too many cyrpto miners. * Fix some yml * Simply a bit
12 lines
181 B
YAML
12 lines
181 B
YAML
name: Build
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
- name: Build it
|
|
run: make
|