Skip to content

Bump third_party/json from 11a835d to 4424a0f #244

Bump third_party/json from 11a835d to 4424a0f

Bump third_party/json from 11a835d to 4424a0f #244

Workflow file for this run

name: Make project
on:
pull_request:
push:
branches:
- master
tags:
- v*
jobs:
make:
name: Make
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install dependent commands
run: sudo apt-get install cc65
- name: Check g++ version
run: g++ --version
- name: Build
run: make
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./example/coverage/lcov.info"
base-path: "./example"
- name: Make tarball
if: startsWith(github.ref, 'refs/tags/')
run: tar cvjf linux.tar.bz2 6502_tester LICENSE README.md
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: linux.tar.bz2