We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f8369 commit 553e98aCopy full SHA for 553e98a
.github/workflows/perf.yml
@@ -0,0 +1,19 @@
1
+name: build
2
+on:
3
+ push:
4
+ branches: [ "master", "develop" ]
5
+ pull_request:
6
7
+
8
+jobs:
9
+ performance:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Install GCC 11
13
+ run: sudo apt update && sudo apt install -y gcc-11
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v3
16
+ - name: Build ranges binary
17
+ run: make
18
+ - name: Check that ranges is more than 20x faster than Python script
19
+ run: make perf-comparison
0 commit comments