Bump actions/setup-python from 4.5.0 to 4.7.1 #186
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: FROST poc CI | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- '.github/workflows/poc**' | |
- 'poc/**' | |
jobs: | |
poc: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/[email protected] | |
with: | |
python-version: "3.10" | |
- name: Set up Sage | |
run: | | |
brew update | |
brew install sage | |
- name: Test with Makefile | |
run: | | |
cd poc | |
make test | |