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 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.