~ruther/avr-guess-the-number

ref: 7867100ea1bc26950b3d0b1c035baf37e7856cac avr-guess-the-number/.github/workflows/docker-image.yml -rw-r--r-- 474 bytes
7867100e — František Boháček feat: add guess and number increment animations 3 years 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