Bump third_party/json from 11a835d
to 4424a0f
(#105)
#247
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |