Automation Checks #60
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: Automation Checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: "0 */3 * * *" | |
permissions: | |
id-token: write | |
contents: write | |
pages: write | |
jobs: | |
build-and-test: | |
name: Automation for agencia-clickone | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v2 | |
with: | |
path: automation | |
- name: Run automation tests | |
run: | | |
cd automation | |
ls -la | |
./run_tests.sh -S ${{ env.INPUT_SRC }} | |
env: | |
INPUT_SRC: automation | |
- name: Upload test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: github-pages | |
path: automation/results/ |