Skip to content

Prepare 1.0.0 release with CI, licensing, and CPU model accuracy #2

Prepare 1.0.0 release with CI, licensing, and CPU model accuracy

Prepare 1.0.0 release with CI, licensing, and CPU model accuracy #2

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install assembler tools
run: sudo apt-get update && sudo apt-get install -y cc65
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build --config Release
- name: Test
run: ctest --test-dir build --output-on-failure