Updating visits number (Completed - Ready To Merge) #41
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: Run tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
generate: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Download submodules | |
run: | | |
git submodule init | |
git submodule update --remote | |
- uses: Roblox/setup-foreman@v1 | |
with: | |
version: "^1.0.0" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: OrbitalOwen/roblox-win-installer-action@1.1 | |
with: | |
cookie: ${{ secrets.ROBLOSECURITY }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build tests | |
run: rojo build tests.project.json --output tests.rbxlx | |
- name: Run tests | |
run: run-in-roblox --place tests.rbxlx --script Tests/tests/TestRunner.server.lua |