Skip to content

Commit

Permalink
Add action
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Feb 12, 2024
1 parent 2de2426 commit ea5735d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/ci/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: ci

on:
workflow_dispatch:
push:

jobs:
ci:
name: test ccache on ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
# create-symlink: true
key: ${{ runner.os }}-build-hello-${{ github.sha }}
restore-keys: |
${{ runner.os }}-build-hello-
${{ runner.os }}-build-
- name: Build
run: make

- name: Test
run: ./hello

0 comments on commit ea5735d

Please sign in to comment.