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

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 update
          sudo apt-get install cc65 fceux

      - name: Main task
        run: make