fix repo name validation #5
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
# Lesli | |
# | |
# Copyright (c) 2023, Lesli Technologies, S. A. | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU General Public License for more details. | |
# | |
# You should have received a copy of the GNU General Public License | |
# along with this program. If not, see http://www.gnu.org/licenses/. | |
# | |
# Lesli · Ruby on Rails SaaS Development Framework. | |
# | |
# Made with ♥ by https://www.lesli.tech | |
# Building a better future, one line of code at a time. | |
# | |
# @contact [email protected] | |
# @website https://www.lesli.dev | |
# @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html | |
# // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ | |
# // · | |
# -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- | |
# REUSABLE GITHUB ACTIONS WORKFLOWS DESIGNED TO BE USED ACROSS | |
# THE LESLI FRAMEWORK REPOSITORIES | |
# -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- | |
# Specs for The Lesli Framework | |
# -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- -·- | |
name: "Lesli specs workflow" | |
on: | |
push: | |
branches: [master] # Execute when push only for the master branch | |
workflow_dispatch: # This allows the action to be executed on demand | |
workflow_call: # This makes it reusable across all the lesli repos | |
pull_request: # Execute this workflow automatic on any new PR | |
jobs: | |
sqlite-tests: | |
name: Run SQLite tests | |
uses: LesliTech/LesliActions/.github/workflows/lesli-spec-sqlite.yaml@master | |
with: | |
branch: ${{ github.ref_name }} | |
postgres-tests: | |
name: Run PostgreSQL tests | |
needs: sqlite-tests # Runs only after the SQLite tests finish | |
uses: LesliTech/LesliActions/.github/workflows/lesli-spec-postgresql.yaml@master | |
with: | |
branch: ${{ github.ref_name }} | |
brakeman-scan: | |
name: Static Analysis Security Tool | |
needs: postgres-tests # Runs only after the PostgreSQL tests finish | |
uses: LesliTech/LesliActions/.github/workflows/lesli-spec-brakeman.yaml@master | |
with: | |
branch: ${{ github.ref_name }} |