From e6c4285e510794749704661f25c91752c93c7656 Mon Sep 17 00:00:00 2001 From: kbz_8 Date: Wed, 10 Jan 2024 04:20:25 +0100 Subject: [PATCH 1/2] Create makefile.yml --- .github/workflows/makefile.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/makefile.yml diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml new file mode 100644 index 0000000..3198e8e --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,18 @@ +name: Build + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Compiling + run: make From 14bea4de8f192edcb748527ff9d6a2089b893d4a Mon Sep 17 00:00:00 2001 From: kbz_8 Date: Wed, 10 Jan 2024 04:25:13 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 88457ef..7b3620f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# fastclass +# fastclass A C program destined to make C++ classes faster following the orthodox canonical class form.