Bump third_party/json from 6325839
to 64f68dc
#195
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 |