niklas-heer / speed-comparison

A repo which compares the speed of different programming languages.
https://niklas-heer.github.io/speed-comparison
MIT License
475 stars 76 forks source link

Improve CI #54

Closed niklas-heer closed 1 year ago

niklas-heer commented 1 year ago

It should only run if something is changed in the relevant files (src/*, Earthfile, ...) not if documentation or assets are updated.

Akaame commented 1 year ago
on:
  push:
    paths-ignore:
      - 'assets'
      - 'README.md'
      - 'LICENSE'
      - '.gitignore'
    branches:
      - master
      - next
  pull_request_review:
    types: [submitted]
  pull_request:
    types:
      - labeled

Should do it, I suppose. What else would you add to the list of ignored paths?

niklas-heer commented 1 year ago

@Akaame that is a great help! Thank you so much. I think you covered everything.