Test suite #932
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: Test suite | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: "0 2 * * 1-5" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare the AVR Rust build environment | |
run: | |
docker build . --file Dockerfile.ci --tag avr-rust/blink.ci:$GITHUB_RUN_NUMBER | |
- name: Compile the crate | |
run: | |
docker run avr-rust/blink.ci:$GITHUB_RUN_NUMBER | |