Beach Today #4
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: Beach Today | |
on: | |
workflow_dispatch: | |
# schedule: | |
# - cron: '*/5 * * * *' # every 5 minutes | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run check | |
env: | |
NOME: ${{ secrets.NOME }} | |
EMAIL: ${{ secrets.EMAIL }} | |
NUMERO_MATRICULA: ${{ secrets.NUMERO_MATRICULA }} | |
CREDENCIAL_ID: ${{ secrets.CREDENCIAL_ID }} | |
run: | | |
echo "Current working directory: $PWD" | |
echo ls -la | |
cd ./shall_we_go_to_the_beach_today/project_scripts | |
python3 -m venv venv_praia | |
source behave_orb/bin/activate | |
pip3 install -r requirements.txt | |
python main.py |