Skip to content

Set working directory #12

Set working directory

Set working directory #12

Workflow file for this run

name: CI
on:
push:
branches: [ mob, ci ]
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-1:
name: Run Conventional Tests On Stage 1
runs-on: ubuntu-22.04
steps:
- name: Make Directories
run: mkdir tinycc-bin/
- name: Checkout
uses: actions/checkout@v4
with:
path: tinycc-rott/
- name: Build and Install
working_directory: tinycc-rott/

Check failure on line 28 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 28, Col: 7): Unexpected value 'working_directory'
run: |
./configure --prefix=${GITHUB_WORKSPACE}/tinycc-bin/
make
make install
- name: Test
run: make test -k