1
0
mirror of https://github.com/DoctorWkt/pdp7-unix.git synced 2026-01-11 23:53:23 +00:00

switch to github actions

This commit is contained in:
Tom Everett 2020-06-06 15:55:52 -06:00
parent f019e98bee
commit da91571a25
2 changed files with 23 additions and 7 deletions

23
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: get libdatetime-perl
run: sudo apt-get install libdatetime-perl
- name: build
run: make clean;make alt; make clean; make

View File

@ -1,7 +0,0 @@
language: c
sudo: yes
before_install:
- sudo apt-get install libdatetime-perl
script: make clean;make alt; make clean; make