From a82cfc869dfb84c5ab9b7771fe25a21e7b52ca64 Mon Sep 17 00:00:00 2001 From: Allan Jeremy Date: Thu, 16 Jun 2022 18:15:56 +0300 Subject: [PATCH] cleanup: removed setup-luau workflow This was a previous attempt at re-usability that didn't exactly pan out well --- .github/workflows/setup-luau.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/setup-luau.yml diff --git a/.github/workflows/setup-luau.yml b/.github/workflows/setup-luau.yml deleted file mode 100644 index 9747daff..00000000 --- a/.github/workflows/setup-luau.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Setup Luau - -on: - workflow_call: - inputs: - runsOn: - required: true - type: string - -jobs: - setup-luau: - name: Setup Luau - runs-on: ${{ inputs.runsOn }} - steps: - - uses: actions/checkout@v3 - - - name: Build Luau - run: make config=release luau luau-analyze - - - uses: actions/setup-python@v3 - with: - python-version: "3.9" - architecture: "x64" - - - name: Install python dependencies - run: | - python -m pip install requests - python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose