Updating visits number (Completed - Ready To Merge) #89
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 selene | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: Roblox/setup-foreman@v1 | |
with: | |
version: "^1.0.0" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Remove ignored files | |
run: rm DataStore2/Promise.lua | |
# std chaining with roblox is broken | |
- name: Generate standard library | |
run: selene generate-roblox-std | |
- name: Run Selene | |
run: selene . |