Skip to content

dont use the old one, btw did i say already that github web is dumb? #10

dont use the old one, btw did i say already that github web is dumb?

dont use the old one, btw did i say already that github web is dumb? #10

Workflow file for this run

name: Compile C Code
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up build environment
run: |
sudo apt-get update
sudo apt-get -y install build-essential
- name: Compile C code
run: gcc -o src/gitready_pre src/gitready.c
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: gitready_pre
path: src/gitready_pre
- name: Run compiled code
run: ./src/gitready_pre