aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: b81bc3ea042dafd97adb9aca78d742445b3b935c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: build

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  test:
    name: Continuous Integration
    runs-on: ubuntu-latest

    steps:
      - name: Checkout Code
        uses: actions/checkout@v4

      - name: Install dependencies from Ubuntu sources
        run: sudo apt-get install cc65 ruby

      - name: Main task
        run: V=1 make all