Skip to content

Bump third_party/json from ee32bfc to 9f60e85 #200

Bump third_party/json from ee32bfc to 9f60e85

Bump third_party/json from ee32bfc to 9f60e85 #200

Workflow file for this run

name: Make project
on:
pull_request:
push:
branches:
- master
tags:
- v*
jobs:
make:
name: Make
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install dependent commands
run: sudo apt-get install cc65
- 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