From 5230a0bf7ea2626f66fc6275e65f8735b2ba7850 Mon Sep 17 00:00:00 2001 From: Nastiiasaenko <54864655+Nastiiasaenko@users.noreply.github.com> Date: Tue, 12 Dec 2023 21:32:37 -0500 Subject: [PATCH] Create test.yml --- .github/workflows/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..bf649d8 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +name: test +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: install + run: make install + - name: format + run: make format + - name: lint + run: make lint + - name: test + run: make test