diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ebe29f5b..11bb305c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,7 +28,7 @@ jobs: selene ./modules style: - name: Stylua + name: Styling runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -37,45 +37,45 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} args: --check . - unit-tests: - name: Unit Tests - runs-on: windows-latest - timeout-minutes: 10 - steps: - - name: Checkout code - uses: actions/checkout@v3 + # unit-tests: + # name: Unit Tests + # runs-on: windows-latest + # timeout-minutes: 10 + # steps: + # - name: Checkout code + # uses: actions/checkout@v3 - - name: Setup Python - uses: actions/setup-python@v2 - with: - python-version: '3.10' - architecture: 'x64' - cache: 'pip' - - name: Install Python dependencies - run: pip install -r requirements.txt + # - name: Setup Python + # uses: actions/setup-python@v2 + # with: + # python-version: '3.10' + # architecture: 'x64' + # cache: 'pip' + # - name: Install Python dependencies + # run: pip install -r requirements.txt - - name: Install Roblox Studio - uses: OrbitalOwen/roblox-win-installer-action@1.1 - with: - cookie: ${{ secrets.ROBLOSECURITY }} - token: ${{ secrets.GITHUB_TOKEN }} + # - name: Install Roblox Studio + # uses: OrbitalOwen/roblox-win-installer-action@1.1 + # with: + # cookie: ${{ secrets.ROBLOSECURITY }} + # token: ${{ secrets.GITHUB_TOKEN }} - - name: Install Foreman - uses: rojo-rbx/setup-foreman@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} + # - name: Install Foreman + # uses: rojo-rbx/setup-foreman@v1 + # with: + # token: ${{ secrets.GITHUB_TOKEN }} - - name: Build tests - run: python build_tests.py + # - name: Build tests + # run: python build_tests.py - - name: Build test place - run: rojo build default.project.json -o test.rbxl + # - name: Build test place + # run: rojo build default.project.json -o test.rbxl - - name: Run tests - run: run-in-roblox --place test.rbxl --script ci\\unit.server.lua > test-out.txt - continue-on-error: true - timeout-minutes: 3 + # - name: Run tests + # run: run-in-roblox --place test.rbxl --script ci\\unit.server.lua > test-out.txt + # continue-on-error: true + # timeout-minutes: 3 - - name: Check test status - shell: bash - run: cat test-out.txt | grep "0 failed, 0 skipped" || (cat test-out.txt && exit 1) + # - name: Check test status + # shell: bash + # run: cat test-out.txt | grep "0 failed, 0 skipped" || (cat test-out.txt && exit 1)