From 0961160ec99f3c2b23204b297da5ea3f8b41e870 Mon Sep 17 00:00:00 2001 From: Mazen Ali Date: Sat, 20 Jul 2024 12:38:18 +0200 Subject: [PATCH] Create main workflow Add main.yml to run "make all" --- .github/workflows/main.yml | 54 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..bd3091b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,54 @@ +name: CI + +on: + push: + branches: + - main + - 'feat/**' + - 'feature/**' + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.11' # Use the appropriate version for your project + + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y make + sudo apt-get install -y git + sudo apt-get install -y curl + + - name: Install Poetry + run: | + curl -sSL https://install.python-poetry.org | python3 - + echo "$HOME/.local/bin" >> $GITHUB_PATH + + - name: Install git-secrets + run: | + git clone https://github.com/awslabs/git-secrets.git + cd git-secrets + sudo make install + git secrets --install + git secrets --register-aws + git secrets --add 'PRIVATE KEY' + + - name: Set up Poetry virtual environment + run: | + poetry config virtualenvs.in-project true + poetry install --no-root + + - name: Run Makefile tasks + run: | + make all