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:
parent
f019e98bee
commit
da91571a25
23
.github/workflows/main.yml
vendored
Normal file
23
.github/workflows/main.yml
vendored
Normal 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
|
||||
@ -1,7 +0,0 @@
|
||||
language: c
|
||||
sudo: yes
|
||||
|
||||
before_install:
|
||||
- sudo apt-get install libdatetime-perl
|
||||
|
||||
script: make clean;make alt; make clean; make
|
||||
Loading…
x
Reference in New Issue
Block a user