blob: f5e8385c645edb69e7cf95efdb7fb2a3c2702e40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
name: Check that `make build` does not produce additional changes
on:
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install pybase16
run: pip install pybase16-builder
- name: Fetch the repository code
uses: actions/checkout@v2
- name: Run make build
run: make build
- name: Check if there are changes
run: git diff --exit-code
|