Skip to content

Commit

Permalink
General: Updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Somerandomguy10111 committed Feb 6, 2025
1 parent dc9cdfd commit 7c22457
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/wf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ on:
push:
schedule:
- cron: '0 0 * * *'

jobs:
StdPyTests:
runs-on: ubuntu-latest # Runs on Ubuntu, required for `apt` commands
setup-env:
runs-on: ubuntu-latest
steps:
- name: Install system dependencies
run: |
sudo apt update
sudo apt install build-essential libboost-all-dev swig -y
- name: Checkout repository
uses: actions/checkout@v4
- name: Run StdPyTests
uses: Somerandomguy10111/actions/.github/workflows/stdpy.yml@main
sudo apt install -y build-essential libboost-all-dev swig
StdPyTests:
needs: setup-env # Ensures setup-env runs first
uses: Somerandomguy10111/actions/.github/workflows/stdpy.yml@main

0 comments on commit 7c22457

Please sign in to comment.