Daily test update #609
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: Daily test update | |
on: | |
schedule: | |
- cron: 0 0 * * * | |
workflow_dispatch: | |
jobs: | |
update_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: prod/testsuite-all | |
- name: Configure git | |
uses: ./.github/actions/git-config | |
- name: Install dependencies | |
run: | | |
sudo apt-get update && sudo apt-get install -y wabt | |
- name: Update proposal tests | |
run: | | |
./scripts/update-proposal-tests.sh | |
git push |