From 8432b8c3a314b76f5500a73c93f83469c99b6fc9 Mon Sep 17 00:00:00 2001 From: Nastiiasaenko <54864655+Nastiiasaenko@users.noreply.github.com> Date: Tue, 12 Dec 2023 21:28:42 -0500 Subject: [PATCH] Create lint.yml --- .github/workflows/lint.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..f914d34 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,18 @@ +name: Lint + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install build dependencies + run: sudo apt-get install -y build-essential gcc + - name: Lint + run: make lint