Skip to content

Set up workflows

Set up workflows #1

Workflow file for this run

name: C Compile
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install build-essential
- name: Compile
run: make