Roblox's Migration Module Changes to DataStore2 v1.4.0 #45
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/[email protected] | |
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 |