Skip to content

Add a "Hello, world!" example. #5

Add a "Hello, world!" example.

Add a "Hello, world!" example. #5

Workflow file for this run

# See: https://github.com/actions/starter-workflows/blob/main/ci/makefile.yml
---
name: Check syntax
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make
run: make
- name: make check
run: make check