Skip to content

Commit

Permalink
updated yml
Browse files Browse the repository at this point in the history
  • Loading branch information
WD-Scott committed Aug 14, 2024
1 parent 25f8971 commit 421855c
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions .github/workflows/validations.yml
Original file line number Diff line number Diff line change
@@ -1,43 +0,0 @@
name: Application_Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Set CI environment variable
run: echo "CI=true" >> $GITHUB_ENV

- name: Install dependencies
run: |
make update
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: create temp downloads
run: |
make create_downloads
- name: Run tests
run: |
make test
- name: build app
run: |
make build_exe

0 comments on commit 421855c

Please sign in to comment.