Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mrzengel committed Jul 22, 2024
1 parent 6ea4927 commit 814c5f7
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,32 @@
name: Test

on:
workflow_run:
workflows: ["Build and install extension"]
types:
- completed
push:
branches: unit_testing
pull_request:
branches: '*'

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: ./.github/actions/test
- uses: actions/checkout@v3

- name: Install node
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
architecture: 'x64'

- name: Install dependencies
run: |
python -m pip install -r requirements.txt
shell: bash

- name: Run Tests
uses: ./.github/actions/test

0 comments on commit 814c5f7

Please sign in to comment.