Skip to content

Change source file from CaesarCipher.c to main.c #19

Change source file from CaesarCipher.c to main.c

Change source file from CaesarCipher.c to main.c #19

Workflow file for this run

name: C Build and Run
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install GCC
run: sudo apt update && sudo apt install -y gcc
- name: Compile C Code
run: gcc -o CaesarCipher main.c
- name: Run C Program
run: ./CaesarCipher
if: success()