From f95412fdb23eb3cec6c7faeb8aaf6e4b8216166b Mon Sep 17 00:00:00 2001 From: Karl Walther Date: Sun, 15 Dec 2024 18:57:39 +0100 Subject: [PATCH] get modelica-json --- .github/workflows/formatting.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml index 779e4ee..2855642 100644 --- a/.github/workflows/formatting.yml +++ b/.github/workflows/formatting.yml @@ -1 +1 @@ -# Workflow for CI tests name: CI-documentation-and-format # Controls when the action will run. on: # Triggers the workflow on push events but only for the master branch push: branches: [ add_CI_workflow ] # Allows you to run this workflow manually from the Actions tab # workflow_dispatch: defaults: run: shell: bash # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: test-formatting: # Skip if the commit message contains "ci skip" #if: "!contains(github.event.head_commit.message, 'ci skip')" runs-on: ubuntu-22.04 steps: # Checks-out repository under $GITHUB_WORKSPACE, so job can access it - name: Checkout code uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: '3.10.11' # Version range or exact version of a Python version to use, using SemVer's version range syntax architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified - name: "Install pip" run: pip3 install --upgrade pip wheel \ No newline at end of file +# Workflow for CI tests name: CI-documentation-and-format # Controls when the action will run. on: # Triggers the workflow on push events but only for the master branch push: branches: [ add_CI_workflow ] # Allows you to run this workflow manually from the Actions tab # workflow_dispatch: defaults: run: shell: bash # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: test-formatting: # Skip if the commit message contains "ci skip" #if: "!contains(github.event.head_commit.message, 'ci skip')" runs-on: ubuntu-22.04 steps: # Checks-out repository under $GITHUB_WORKSPACE, so job can access it - name: Checkout code uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: '3.10.11' # Version range or exact version of a Python version to use, using SemVer's version range syntax architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified - name: "Install pip" run: pip3 install --upgrade pip wheel - name: Download modelica-json-1.2.0.zip run: wget https://github.com/lbl-srg/modelica-json/releases/download/v1.2.0/modelica-json-1.2.0.zip -O modelica-json-1.2.0.zip - name: Unzip modelica-json-1.2.0.zip run: unzip modelica-json-1.2.0.zip -d modelica-json - name: Display folder structure run: tree modelica-json \ No newline at end of file