Bump third_party/json from b36f4c4
to 6325839
#192
Workflow file for this run
This file contains 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-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 |