Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CI #81

Open
vil02 opened this issue Oct 3, 2024 · 0 comments
Open

Add CI #81

vil02 opened this issue Oct 3, 2024 · 0 comments

Comments

@vil02
Copy link
Contributor

vil02 commented Oct 3, 2024

Why not to add some simple CI? A very simple workflow could look like this:

---
name: build

'on':
  workflow_dispatch:
  push:
    branches:
      - main
  pull_request:

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Build and run
        run: |
          mkdir -p compile
          $(pwd)/dree.sh 2
...

Please note that it only builds and runs the program. It does not perform any verification of the output.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant