This file contains hidden or 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
# Substitua nome_do_projeto pelo nome de seu projeto | |
name: Build Raspberry Pi Pico W Project | |
# Automação do fluxo de trabalho - Thiago Sousa - https://github.com/ThiagoSousa81 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main |
This file contains hidden or 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: .NET Core Desktop Build v8.0 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: |
This file contains hidden or 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
<?php | |
$usuario = 'root'; | |
$senha = ''; | |
$database = 'login'; | |
$host = 'localhost'; | |
$mysqli = new mysqli($host, $usuario, $senha, $database); | |
if($mysqli->error) { |