~ruther/avr-guess-the-number

ref: ac21d0a3df02956aa5b7ab6449dc72a4dffa6915 avr-guess-the-number/.github/workflows/docker-image.yml -rw-r--r-- 474 bytes
ac21d0a3 — Rutherther Update README.md 1 year, 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 Rust build environment
      run:
        docker build . --file .github/Dockerfile.ci --tag rust-avr-ci:$GITHUB_RUN_NUMBER

    - name: Compile the crate
      run:
        docker run rust-avr-ci:$GITHUB_RUN_NUMBER build --release
Do not follow this link