Skip to content

Continue work on math and vector stuff #127

Continue work on math and vector stuff

Continue work on math and vector stuff #127

Workflow file for this run

name: test
on:
push:
branches: [master]
paths:
- '.github/workflows/test.yaml'
- 'src/**'
- 'test/**'
- 'carbon.h'
pull_request:
branches: [master]
types: [opened, synchronize]
paths:
- '.github/workflows/test.yaml'
- 'src/**'
- 'test/**'
- 'carbon.h'
schedule:
- cron: '0 9 * * 5'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
test:
permissions:
security-events: write
runs-on: ubuntu-latest
steps:
- name: checkout-repo
uses: actions/checkout@v4
- name: setup-codeql
uses: github/codeql-action/init@v3
with:
languages: c-cpp
- name: test
run: |
clang -std=gnu99 src/make.c -o make
./make check
- name: analyze
uses: github/codeql-action/analyze@v3