Skip to content

Commit

Permalink
Add ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MrApplejuice committed May 14, 2024
1 parent 9973ccd commit ebe6569
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI checks

on:
push:
branches:
- main
pull_request:
branches:
- '*'
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.12

- name: Install Pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Run make command
run: |
make -f help.makefile
- name: Run check-translations.sh
run: |
bash tools/workflows/check-translations.sh

0 comments on commit ebe6569

Please sign in to comment.